quic/qbox
Loading...
Searching...
No Matches
cortex-a710.h
1/*
2 * This file is part of libqbox
3 * Copyright (c) 2022-2023 Qualcomm Innovation Center, Inc. All Rights Reserved.
4 * Author: GreenSocs 2020
5 *
6 * SPDX-License-Identifier: BSD-3-Clause
7 */
8
9#pragma once
10
11#include <string>
12
13#include <cci_configuration>
14
15#include <libqemu-cxx/target/aarch64.h>
16
17#include <tlm-extensions/exclusive-access.h>
18#include <module_factory_registery.h>
19
20#include <arm.h>
21#include <ports/qemu-initiator-signal-socket.h>
22#include <ports/qemu-target-signal-socket.h>
23#include <qemu-instance.h>
24
26{
27protected:
28 int get_psci_conduit_val() const
29 {
30 if (p_psci_conduit.get_value() == "disabled") {
31 return 0;
32 } else if (p_psci_conduit.get_value() == "smc") {
33 return 1;
34 } else if (p_psci_conduit.get_value() == "hvc") {
35 return 2;
36 } else {
37 /* TODO: report warning */
38 return 0;
39 }
40 }
41
42 void add_exclusive_ext(TlmPayload& pl)
43 {
45 ext->add_hop(m_cpu.get_index());
46 pl.set_extension(ext);
47 }
48
49 static uint64_t extract_data_from_payload(const TlmPayload& pl)
50 {
51 uint8_t* ptr = pl.get_data_ptr() + pl.get_data_length() - 1;
52 uint64_t ret = 0;
53
54 /* QEMU never accesses more than 64 bits at the same time */
55 assert(pl.get_data_length() <= 8);
56
57 while (ptr >= pl.get_data_ptr()) {
58 ret = (ret << 8) | *(ptr--);
59 }
60
61 return ret;
62 }
63
64public:
65 cci::cci_param<unsigned int> p_mp_affinity;
66 cci::cci_param<bool> p_has_el2;
67 cci::cci_param<bool> p_has_el3;
68 cci::cci_param<bool> p_start_powered_off;
69 cci::cci_param<bool> p_en_pauth;
70 cci::cci_param<std::string> p_psci_conduit;
71 cci::cci_param<uint64_t> p_rvbar;
72 cci::cci_param<uint64_t> p_cntfrq_hz;
73
78
79 QemuInitiatorSignalSocket irq_timer_phys_out;
80 QemuInitiatorSignalSocket irq_timer_virt_out;
81 QemuInitiatorSignalSocket irq_timer_hyp_out;
82 QemuInitiatorSignalSocket irq_timer_sec_out;
83 QemuInitiatorSignalSocket irq_maintenance_out;
84 QemuInitiatorSignalSocket irq_pmu_out;
85 cpu_arm_cortexA710(const sc_core::sc_module_name& name, sc_core::sc_object* o)
86 : cpu_arm_cortexA710(name, *(dynamic_cast<QemuInstance*>(o)))
87 {
88 }
89 cpu_arm_cortexA710(const sc_core::sc_module_name& name, QemuInstance& inst)
90 : QemuCpuArm(name, inst, "cortex-a710-arm")
91 , p_mp_affinity("mp_affinity", 0, "Multi-processor affinity value")
92 , p_has_el2("has_el2", true, "ARM virtualization extensions")
93 , p_has_el3("has_el3", true, "ARM secure-mode extensions")
94 , p_en_pauth("enable_pauth", true, "ARM pointer authentication")
95 , p_start_powered_off("start_powered_off", false,
96 "Start and reset the CPU "
97 "in powered-off state")
98 , p_psci_conduit("psci_conduit", "disabled",
99 "Set the QEMU PSCI conduit: "
100 "disabled->no conduit, "
101 "hvc->through hvc call, "
102 "smc->through smc call")
103 , p_rvbar("rvbar", 0ull, "Reset vector base address register value")
104 , p_cntfrq_hz("cntfrq_hz", 0ull, "CPU Generic Timer CNTFRQ in Hz")
105
106 , irq_in("irq_in")
107 , fiq_in("fiq_in")
108 , virq_in("virq_in")
109 , vfiq_in("vfiq_in")
110 , irq_timer_phys_out("irq_timer_phys_out")
111 , irq_timer_virt_out("irq_timer_virt_out")
112 , irq_timer_hyp_out("irq_timer_hyp_out")
113 , irq_timer_sec_out("irq_timer_sec_out")
114 , irq_maintenance_out("gicv3_maintenance_interrupt")
115 , irq_pmu_out("pmu_interrupt")
116 {
117 m_external_ev |= irq_in->default_event();
118 m_external_ev |= fiq_in->default_event();
119 m_external_ev |= virq_in->default_event();
120 m_external_ev |= vfiq_in->default_event();
121 }
122
123 void before_end_of_elaboration() override
124 {
125 QemuCpuArm::before_end_of_elaboration();
126
127 qemu::CpuAarch64 cpu(m_cpu);
128 cpu.set_aarch64_mode(true);
129
130 if (!p_mp_affinity.is_default_value()) {
131 cpu.set_prop_int("mp-affinity", p_mp_affinity);
132 }
133 cpu.set_prop_bool("has_el2", p_has_el2);
134 cpu.set_prop_bool("has_el3", p_has_el3);
135
136 if (!p_en_pauth.is_default_value()) {
137 cpu.set_prop_bool("pauth", p_en_pauth);
138 }
139 cpu.set_prop_bool("start-powered-off", p_start_powered_off);
140 cpu.set_prop_int("psci-conduit", get_psci_conduit_val());
141
142 cpu.set_prop_int("rvbar", p_rvbar);
143 if (!p_cntfrq_hz.is_default_value()) {
144 cpu.set_prop_int("cntfrq", p_cntfrq_hz);
145 }
146 }
147
148 void end_of_elaboration() override
149 {
150 QemuCpuArm::end_of_elaboration();
151
152 irq_in.init(m_dev, 0);
153 fiq_in.init(m_dev, 1);
154 virq_in.init(m_dev, 2);
155 vfiq_in.init(m_dev, 3);
156
157 irq_timer_phys_out.init(m_dev, 0);
158 irq_timer_virt_out.init(m_dev, 1);
159 irq_timer_hyp_out.init(m_dev, 2);
160 irq_timer_sec_out.init(m_dev, 3);
161 irq_maintenance_out.init_named(m_dev, "gicv3-maintenance-interrupt", 0);
162 irq_pmu_out.init_named(m_dev, "pmu-interrupt", 0);
163 }
164
165 void initiator_customize_tlm_payload(TlmPayload& payload) override
166 {
169
170 QemuCpu::initiator_customize_tlm_payload(payload);
171
172 addr = payload.get_address();
173
174 if (!arm_cpu.is_in_exclusive_context()) {
175 return;
176 }
177
178 if (addr != arm_cpu.get_exclusive_addr()) {
179 return;
180 }
181
182 /*
183 * We are in the load/store pair of the cmpxchg of the exclusive store
184 * implementation. Add the exclusive access extension to lock the
185 * memory and check for exclusive store success in
186 * initiator_tidy_tlm_payload.
187 */
188 add_exclusive_ext(payload);
189 }
190
191 void initiator_tidy_tlm_payload(TlmPayload& payload) override
192 {
193 using namespace tlm;
194
197
198 QemuCpu::initiator_tidy_tlm_payload(payload);
199
200 payload.get_extension(ext);
201 bool exit_tb = false;
202
203 if (ext == nullptr) {
204 return;
205 }
206
207 if (payload.get_command() == TLM_WRITE_COMMAND) {
208 auto sta = ext->get_exclusive_store_status();
209
210 /* We just executed an exclusive store. Check its status */
211 if (sta == ExclusiveAccessTlmExtension::EXCLUSIVE_STORE_FAILURE) {
212 /*
213 * To actually make the exclusive store fails, we need to trick
214 * QEMU into thinking that the value at the store address has
215 * changed compared to when it did the corresponding ldrex (due
216 * to the way exclusive loads/stores are implemented in QEMU).
217 * For this, we simply smash the exclusive_val field of the ARM
218 * CPU state in case it currently matches with the value in
219 * memory.
220 */
221 uint64_t exclusive_val = arm_cpu.get_exclusive_val();
222 uint64_t mem_val = extract_data_from_payload(payload);
223 uint64_t mask = (payload.get_data_length() == 8) ? -1 : (1 << (8 * payload.get_data_length())) - 1;
224
225 if ((exclusive_val & mask) == mem_val) {
226 arm_cpu.set_exclusive_val(~exclusive_val);
227
228 /*
229 * Exit the execution loop to force QEMU to re-do the
230 * store. This is necessary because we modify exclusive_val
231 * in the CPU env. This field is also mapped on a TCG
232 * global. Even though the qemu_st_ixx TCG opcs are marked
233 * TCG_OPF_CALL_CLOBBER, TCG does not reload the global
234 * after the store as I thought it would do. To force this,
235 * we exit the TB here so that the new exclusive_val value
236 * will be taken into account on the next execution.
237 */
238 exit_tb = true;
239 }
240
241 payload.set_response_status(TLM_OK_RESPONSE);
242 }
243 }
244
245 payload.clear_extension(ext);
246 delete ext;
247
248 if (exit_tb) {
249 /*
250 * FIXME: exiting the CPU loop from here is a bit violent. The
251 * caller won't have a chance to destruct its stack objects. The
252 * object model should be reworked to allow exiting the loop
253 * cleanly.
254 */
255 m_cpu.exit_loop_from_io();
256 }
257 }
258};
259
260extern "C" void module_register();
Exclusive load/store TLM extension.
Definition exclusive-access.h:36
Definition arm.h:14
A QEMU output GPIO exposed as a InitiatorSignalSocket<bool>
Definition qemu-initiator-signal-socket.h:40
void init_named(qemu::Device dev, const char *gpio_name, int gpio_idx)
Initialize this socket with a device, a GPIO namespace, and a GPIO index.
Definition qemu-initiator-signal-socket.h:155
void init(qemu::Device dev, int gpio_idx)
Initialize this socket with a device and a GPIO index.
Definition qemu-initiator-signal-socket.h:137
This class encapsulates a libqemu-cxx qemu::LibQemu instance. It handles QEMU parameters and instance...
Definition qemu-instance.h:89
A QEMU input GPIO exposed as a TargetSignalSocket<bool>
Definition qemu-target-signal-socket.h:29
void init(qemu::Device dev, int gpio_idx)
Initialize this socket with a device and a GPIO index.
Definition qemu-target-signal-socket.h:60
Definition target.h:160
Definition cortex-a710.h:26
Definition aarch64.h:36