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