gem5 v24.1.0.1
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
controller.hh
Go to the documentation of this file.
1/*
2 * Copyright (c) 2023 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
38#ifndef __MEM_RUBY_PROTOCOL_CHI_TLM_CONTROLLER_HH__
39#define __MEM_RUBY_PROTOCOL_CHI_TLM_CONTROLLER_HH__
40
41#include <ARM/TLM/arm_chi.h>
42
44#include "mem/ruby/protocol/CHI/CHIDataType.hh"
45#include "mem/ruby/protocol/CHI/CHIRequestType.hh"
46#include "mem/ruby/protocol/CHI/CHIResponseType.hh"
47#include "mem/ruby/protocol/RequestStatus.hh"
48#include "mem/ruby/protocol/WriteMask.hh"
49#include "params/TlmController.hh"
50
51namespace gem5 {
52
53namespace ruby {
54class CHIRequestMsg;
55class CHIResponseMsg;
56class CHIDataMsg;
57}
58
59namespace tlm::chi {
60
92{
93 public:
94 PARAMS(TlmController);
95 CacheController(const Params &p);
96
98 std::function<void(ARM::CHI::Payload* payload, ARM::CHI::Phase* phase)> bw;
99
100 bool recvRequestMsg(const CHIRequestMsg *msg) override;
101 bool recvSnoopMsg(const CHIRequestMsg *msg) override;
102 bool recvResponseMsg(const CHIResponseMsg *msg) override;
103 bool recvDataMsg(const CHIDataMsg *msg) override;
104
105 void sendMsg(ARM::CHI::Payload &payload, ARM::CHI::Phase &phase);
106 using CHIGenericController::sendRequestMsg;
107 void sendRequestMsg(ARM::CHI::Payload &payload, ARM::CHI::Phase &phase);
108 using CHIGenericController::sendResponseMsg;
109 void sendResponseMsg(ARM::CHI::Payload &payload, ARM::CHI::Phase &phase);
110 void sendCompAck(ARM::CHI::Payload &payload, ARM::CHI::Phase &phase);
111 using CHIGenericController::sendDataMsg;
112 void sendDataMsg(ARM::CHI::Payload &payload, ARM::CHI::Phase &phase);
113
114 Addr reqAddr(ARM::CHI::Payload &payload, ARM::CHI::Phase &phase) const;
115 Addr reqSize(ARM::CHI::Payload &payload, ARM::CHI::Phase &phase) const;
116
117 void pCreditGrant(const CHIResponseMsg *msg);
118
120 {
121 enum class Type
122 {
123 READ,
124 WRITE,
126 };
127
129 ARM::CHI::Payload &_payload,
130 ARM::CHI::Phase &_phase);
131 ~Transaction();
132
133 static std::unique_ptr<Transaction> gen(CacheController *parent,
134 ARM::CHI::Payload &_payload,
135 ARM::CHI::Phase &_phase);
136
137 virtual bool
138 handle(const CHIDataMsg *msg)
139 {
140 panic("Unimplemented");
141 }
142
143 virtual bool handle(const CHIResponseMsg *msg);
144
146 ARM::CHI::Payload *payload;
147 ARM::CHI::Phase phase;
148 };
150 {
152 bool handle(const CHIDataMsg *msg) override;
153 bool handle(const CHIResponseMsg *msg) override;
154 bool forward(const CHIDataMsg *msg);
155
156 uint8_t dataMsgCnt = 0;
157 };
159 {
161 bool handle(const CHIResponseMsg *msg) override;
162 };
164 {
166 bool handle(const CHIResponseMsg *msg) override;
167 bool recvComp = false;
168 bool recvDBID = false;
169 };
170 std::unordered_map<uint16_t, std::unique_ptr<Transaction>> pendingTransactions;
171};
172
173} // namespace tlm::chi
174
175} // namespace gem5
176
177#endif // __MEM_RUBY_PROTOCOL_CHI_TLM_CONTROLLER_HH__
ClockedObjectParams Params
Parameters of ClockedObject.
The tlm::chi::CacheController is a ruby CacheController which acts as a bridge between the AMBA TLM 2...
Definition controller.hh:92
bool recvRequestMsg(const CHIRequestMsg *msg) override
Definition controller.cc:58
void sendResponseMsg(ARM::CHI::Payload &payload, ARM::CHI::Phase &phase)
Addr reqSize(ARM::CHI::Payload &payload, ARM::CHI::Phase &phase) const
bool recvDataMsg(const CHIDataMsg *msg) override
void pCreditGrant(const CHIResponseMsg *msg)
Definition controller.cc:83
bool recvSnoopMsg(const CHIRequestMsg *msg) override
Definition controller.cc:65
void sendCompAck(ARM::CHI::Payload &payload, ARM::CHI::Phase &phase)
void sendMsg(ARM::CHI::Payload &payload, ARM::CHI::Phase &phase)
bool recvResponseMsg(const CHIResponseMsg *msg) override
Definition controller.cc:97
void sendDataMsg(ARM::CHI::Payload &payload, ARM::CHI::Phase &phase)
void sendRequestMsg(ARM::CHI::Payload &payload, ARM::CHI::Phase &phase)
Addr reqAddr(ARM::CHI::Payload &payload, ARM::CHI::Phase &phase) const
std::function< void(ARM::CHI::Payload *payload, ARM::CHI::Phase *phase)> bw
Set this to send data upstream.
Definition controller.hh:98
std::unordered_map< uint16_t, std::unique_ptr< Transaction > > pendingTransactions
#define panic(...)
This implements a cprintf based panic() function.
Definition logging.hh:188
Bitfield< 0 > p
Copyright (c) 2024 Arm Limited All rights reserved.
Definition binary32.hh:36
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition types.hh:147
bool handle(const CHIResponseMsg *msg) override
bool handle(const CHIDataMsg *msg) override
Transaction(CacheController *parent, ARM::CHI::Payload &_payload, ARM::CHI::Phase &_phase)
static std::unique_ptr< Transaction > gen(CacheController *parent, ARM::CHI::Payload &_payload, ARM::CHI::Phase &_phase)
virtual bool handle(const CHIDataMsg *msg)
bool handle(const CHIResponseMsg *msg) override

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