Zane Shelley | 93b61ad | 2019-10-16 20:41:03 -0500 | [diff] [blame] | 1 | #pragma once |
| 2 | |
Zane Shelley | 3a02e24 | 2020-05-08 16:25:36 -0500 | [diff] [blame] | 3 | #include <hei_chip.hpp> |
| 4 | #include <hei_types.hpp> |
Zane Shelley | 93b61ad | 2019-10-16 20:41:03 -0500 | [diff] [blame] | 5 | |
| 6 | namespace libhei |
| 7 | { |
| 8 | |
| 9 | /** |
Zane Shelley | 6722b5b | 2020-05-12 22:09:04 -0500 | [diff] [blame] | 10 | * @brief A signature represents an active attention from a single bit position |
| 11 | * from an isolation node within a chip. |
Zane Shelley | 93b61ad | 2019-10-16 20:41:03 -0500 | [diff] [blame] | 12 | * |
| 13 | * The isolator will gather a list of all active attentions on a chip and return |
| 14 | * a list of signatures to the user application. The user application should be |
| 15 | * able to determine what actions to take based on these signatures. |
| 16 | */ |
| 17 | class Signature |
| 18 | { |
| 19 | public: // Constructors, destructor, assignment, etc. |
Zane Shelley | 8453353 | 2020-06-11 15:20:50 -0500 | [diff] [blame] | 20 | /** |
| 21 | * @brief Default contructor. |
| 22 | * |
| 23 | * In general the default constructor should not be used, but it is needed |
| 24 | * for some STL functions. |
| 25 | */ |
Zane Shelley | dc7baeb | 2020-06-11 14:28:46 -0500 | [diff] [blame] | 26 | Signature() = default; |
| 27 | |
Zane Shelley | 93b61ad | 2019-10-16 20:41:03 -0500 | [diff] [blame] | 28 | /** |
| 29 | * @brief Constructor from components. |
| 30 | * @param i_chip The chip containing this register. |
Zane Shelley | 6722b5b | 2020-05-12 22:09:04 -0500 | [diff] [blame] | 31 | * @param i_id The node ID. |
Zane Shelley | 93b61ad | 2019-10-16 20:41:03 -0500 | [diff] [blame] | 32 | * @param i_instance The instance of this register. |
| 33 | * @param i_bit The target bit within this register. |
| 34 | * @param i_attnType The attention type reported by this bit. |
| 35 | */ |
Zane Shelley | 6722b5b | 2020-05-12 22:09:04 -0500 | [diff] [blame] | 36 | Signature(const Chip& i_chip, NodeId_t i_id, Instance_t i_instance, |
Zane Shelley | 13b182b | 2020-05-07 20:23:45 -0500 | [diff] [blame] | 37 | BitPosition_t i_bit, AttentionType_t i_attnType) : |
Zane Shelley | 7f7a42d | 2019-10-28 13:28:31 -0500 | [diff] [blame] | 38 | iv_chip(i_chip), |
| 39 | iv_id(i_id), iv_instance(i_instance), iv_bit(i_bit), |
| 40 | iv_attnType(i_attnType) |
Zane Shelley | 93b61ad | 2019-10-16 20:41:03 -0500 | [diff] [blame] | 41 | {} |
| 42 | |
| 43 | /** @brief Destructor. */ |
| 44 | ~Signature() = default; |
| 45 | |
| 46 | /** @brief Copy constructor. */ |
Zane Shelley | fe27b65 | 2019-10-28 11:33:07 -0500 | [diff] [blame] | 47 | Signature(const Signature&) = default; |
Zane Shelley | 93b61ad | 2019-10-16 20:41:03 -0500 | [diff] [blame] | 48 | |
| 49 | /** @brief Assignment operator. */ |
Zane Shelley | fe27b65 | 2019-10-28 11:33:07 -0500 | [diff] [blame] | 50 | Signature& operator=(const Signature&) = default; |
Zane Shelley | 93b61ad | 2019-10-16 20:41:03 -0500 | [diff] [blame] | 51 | |
Zane Shelley | 7c8faa1 | 2019-10-28 22:26:28 -0500 | [diff] [blame] | 52 | private: |
Zane Shelley | 13b182b | 2020-05-07 20:23:45 -0500 | [diff] [blame] | 53 | Chip iv_chip; ///< Chip containing this register. |
Zane Shelley | 6722b5b | 2020-05-12 22:09:04 -0500 | [diff] [blame] | 54 | NodeId_t iv_id; ///< Node ID. |
Zane Shelley | 13b182b | 2020-05-07 20:23:45 -0500 | [diff] [blame] | 55 | Instance_t iv_instance; ///< Instance of this register. |
| 56 | BitPosition_t iv_bit; ///< Target bit within this register. |
| 57 | AttentionType_t iv_attnType; ///< Attention type reported by this bit. |
Zane Shelley | 93b61ad | 2019-10-16 20:41:03 -0500 | [diff] [blame] | 58 | |
| 59 | public: // Member functions |
Zane Shelley | 93b61ad | 2019-10-16 20:41:03 -0500 | [diff] [blame] | 60 | /** @return The chip containing this register. */ |
Zane Shelley | 7f7a42d | 2019-10-28 13:28:31 -0500 | [diff] [blame] | 61 | const Chip& getChip() const |
| 62 | { |
| 63 | return iv_chip; |
| 64 | } |
Zane Shelley | 93b61ad | 2019-10-16 20:41:03 -0500 | [diff] [blame] | 65 | |
Zane Shelley | d280cca | 2020-11-13 17:08:24 -0600 | [diff] [blame] | 66 | /** @return The node ID. */ |
Zane Shelley | 6722b5b | 2020-05-12 22:09:04 -0500 | [diff] [blame] | 67 | NodeId_t getId() const |
Zane Shelley | 7f7a42d | 2019-10-28 13:28:31 -0500 | [diff] [blame] | 68 | { |
| 69 | return iv_id; |
| 70 | } |
Zane Shelley | 93b61ad | 2019-10-16 20:41:03 -0500 | [diff] [blame] | 71 | |
| 72 | /** @return The instance of this register. */ |
Zane Shelley | 13b182b | 2020-05-07 20:23:45 -0500 | [diff] [blame] | 73 | Instance_t getInstance() const |
Zane Shelley | 7f7a42d | 2019-10-28 13:28:31 -0500 | [diff] [blame] | 74 | { |
| 75 | return iv_instance; |
| 76 | } |
Zane Shelley | 93b61ad | 2019-10-16 20:41:03 -0500 | [diff] [blame] | 77 | |
| 78 | /** @return The target bit within this register. */ |
Zane Shelley | 13b182b | 2020-05-07 20:23:45 -0500 | [diff] [blame] | 79 | BitPosition_t getBit() const |
Zane Shelley | 7f7a42d | 2019-10-28 13:28:31 -0500 | [diff] [blame] | 80 | { |
| 81 | return iv_bit; |
| 82 | } |
Zane Shelley | 93b61ad | 2019-10-16 20:41:03 -0500 | [diff] [blame] | 83 | |
| 84 | /** @return The attention type reported by this bit. */ |
Zane Shelley | 7f7a42d | 2019-10-28 13:28:31 -0500 | [diff] [blame] | 85 | AttentionType_t getAttnType() const |
| 86 | { |
| 87 | return iv_attnType; |
| 88 | } |
Zane Shelley | 11b8994 | 2019-11-07 11:07:28 -0600 | [diff] [blame] | 89 | |
Zane Shelley | d280cca | 2020-11-13 17:08:24 -0600 | [diff] [blame] | 90 | /** @return A 32-bit integer containing the node ID, instance, and bit. This |
| 91 | * should be helpful for consistent logging and tracing. */ |
| 92 | uint32_t toUint32() const |
| 93 | { |
| 94 | return getId() << 16 | getInstance() << 8 | getBit(); |
| 95 | } |
| 96 | |
Zane Shelley | 11b8994 | 2019-11-07 11:07:28 -0600 | [diff] [blame] | 97 | public: // Operators |
| 98 | /** @brief Equals operator. */ |
| 99 | bool operator==(const Signature& i_r) const |
| 100 | { |
| 101 | return (getChip() == i_r.getChip() && getId() == i_r.getId() && |
| 102 | getInstance() == i_r.getInstance() && |
| 103 | getBit() == i_r.getBit() && getAttnType() == i_r.getAttnType()); |
| 104 | } |
| 105 | |
| 106 | /** @brief Less than operator. */ |
| 107 | bool operator<(const Signature& i_r) const |
| 108 | { |
| 109 | if (getChip() < i_r.getChip()) |
| 110 | { |
| 111 | return true; |
| 112 | } |
| 113 | else if (getChip() == i_r.getChip()) |
| 114 | { |
| 115 | if (getId() < i_r.getId()) |
| 116 | { |
| 117 | return true; |
| 118 | } |
| 119 | else if (getId() == i_r.getId()) |
| 120 | { |
| 121 | if (getInstance() < i_r.getInstance()) |
| 122 | { |
| 123 | return true; |
| 124 | } |
| 125 | else if (getInstance() == i_r.getInstance()) |
| 126 | { |
| 127 | if (getBit() < i_r.getBit()) |
| 128 | { |
| 129 | return true; |
| 130 | } |
| 131 | else if (getBit() == i_r.getBit()) |
| 132 | { |
| 133 | return (getAttnType() < i_r.getAttnType()); |
| 134 | } |
| 135 | } |
| 136 | } |
| 137 | } |
| 138 | |
| 139 | return false; |
| 140 | } |
Zane Shelley | 93b61ad | 2019-10-16 20:41:03 -0500 | [diff] [blame] | 141 | }; |
| 142 | |
| 143 | } // end namespace libhei |