xref: /qemu/hw/intc/riscv_aclint.c (revision 45b1f81d)
1cc63a182SAnup Patel /*
2b8fb878aSAnup Patel  * RISC-V ACLINT (Advanced Core Local Interruptor)
3b8fb878aSAnup Patel  * URL: https://github.com/riscv/riscv-aclint
4cc63a182SAnup Patel  *
5cc63a182SAnup Patel  * Copyright (c) 2016-2017 Sagar Karandikar, sagark@eecs.berkeley.edu
6cc63a182SAnup Patel  * Copyright (c) 2017 SiFive, Inc.
7b8fb878aSAnup Patel  * Copyright (c) 2021 Western Digital Corporation or its affiliates.
8cc63a182SAnup Patel  *
9cc63a182SAnup Patel  * This provides real-time clock, timer and interprocessor interrupts.
10cc63a182SAnup Patel  *
11cc63a182SAnup Patel  * This program is free software; you can redistribute it and/or modify it
12cc63a182SAnup Patel  * under the terms and conditions of the GNU General Public License,
13cc63a182SAnup Patel  * version 2 or later, as published by the Free Software Foundation.
14cc63a182SAnup Patel  *
15cc63a182SAnup Patel  * This program is distributed in the hope it will be useful, but WITHOUT
16cc63a182SAnup Patel  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
17cc63a182SAnup Patel  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
18cc63a182SAnup Patel  * more details.
19cc63a182SAnup Patel  *
20cc63a182SAnup Patel  * You should have received a copy of the GNU General Public License along with
21cc63a182SAnup Patel  * this program.  If not, see <http://www.gnu.org/licenses/>.
22cc63a182SAnup Patel  */
23cc63a182SAnup Patel 
24cc63a182SAnup Patel #include "qemu/osdep.h"
25cc63a182SAnup Patel #include "qapi/error.h"
26cc63a182SAnup Patel #include "qemu/error-report.h"
27b8fb878aSAnup Patel #include "qemu/log.h"
28cc63a182SAnup Patel #include "qemu/module.h"
29cc63a182SAnup Patel #include "hw/sysbus.h"
30cc63a182SAnup Patel #include "target/riscv/cpu.h"
31cc63a182SAnup Patel #include "hw/qdev-properties.h"
32cc63a182SAnup Patel #include "hw/intc/riscv_aclint.h"
33cc63a182SAnup Patel #include "qemu/timer.h"
34cc63a182SAnup Patel #include "hw/irq.h"
357cbcc538SAtish Patra #include "migration/vmstate.h"
36cc63a182SAnup Patel 
37b8fb878aSAnup Patel typedef struct riscv_aclint_mtimer_callback {
38b8fb878aSAnup Patel     RISCVAclintMTimerState *s;
39cc63a182SAnup Patel     int num;
40b8fb878aSAnup Patel } riscv_aclint_mtimer_callback;
41cc63a182SAnup Patel 
cpu_riscv_read_rtc_raw(uint32_t timebase_freq)42e2f01f3cSFrank Chang static uint64_t cpu_riscv_read_rtc_raw(uint32_t timebase_freq)
43cc63a182SAnup Patel {
44cc63a182SAnup Patel     return muldiv64(qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL),
45cc63a182SAnup Patel         timebase_freq, NANOSECONDS_PER_SECOND);
46cc63a182SAnup Patel }
47cc63a182SAnup Patel 
cpu_riscv_read_rtc(void * opaque)48e2f01f3cSFrank Chang static uint64_t cpu_riscv_read_rtc(void *opaque)
49e2f01f3cSFrank Chang {
50e2f01f3cSFrank Chang     RISCVAclintMTimerState *mtimer = opaque;
51e2f01f3cSFrank Chang     return cpu_riscv_read_rtc_raw(mtimer->timebase_freq) + mtimer->time_delta;
52e2f01f3cSFrank Chang }
53e2f01f3cSFrank Chang 
54cc63a182SAnup Patel /*
55cc63a182SAnup Patel  * Called when timecmp is written to update the QEMU timer or immediately
56cc63a182SAnup Patel  * trigger timer interrupt if mtimecmp <= current timer value.
57cc63a182SAnup Patel  */
riscv_aclint_mtimer_write_timecmp(RISCVAclintMTimerState * mtimer,RISCVCPU * cpu,int hartid,uint64_t value)58b8fb878aSAnup Patel static void riscv_aclint_mtimer_write_timecmp(RISCVAclintMTimerState *mtimer,
59b8fb878aSAnup Patel                                               RISCVCPU *cpu,
60cc63a182SAnup Patel                                               int hartid,
61e2f01f3cSFrank Chang                                               uint64_t value)
62cc63a182SAnup Patel {
63e2f01f3cSFrank Chang     uint32_t timebase_freq = mtimer->timebase_freq;
64cc63a182SAnup Patel     uint64_t next;
65cc63a182SAnup Patel     uint64_t diff;
66cc63a182SAnup Patel 
679382a9eaSJason Chien     uint64_t rtc = cpu_riscv_read_rtc(mtimer);
68cc63a182SAnup Patel 
697cbcc538SAtish Patra     /* Compute the relative hartid w.r.t the socket */
707cbcc538SAtish Patra     hartid = hartid - mtimer->hartid_base;
717cbcc538SAtish Patra 
727cbcc538SAtish Patra     mtimer->timecmp[hartid] = value;
739382a9eaSJason Chien     if (mtimer->timecmp[hartid] <= rtc) {
74b8fb878aSAnup Patel         /*
75b8fb878aSAnup Patel          * If we're setting an MTIMECMP value in the "past",
76b8fb878aSAnup Patel          * immediately raise the timer interrupt
77b8fb878aSAnup Patel          */
787cbcc538SAtish Patra         qemu_irq_raise(mtimer->timer_irqs[hartid]);
79cc63a182SAnup Patel         return;
80cc63a182SAnup Patel     }
81cc63a182SAnup Patel 
82cc63a182SAnup Patel     /* otherwise, set up the future timer interrupt */
837cbcc538SAtish Patra     qemu_irq_lower(mtimer->timer_irqs[hartid]);
849382a9eaSJason Chien     diff = mtimer->timecmp[hartid] - rtc;
85cc63a182SAnup Patel     /* back to ns (note args switched in muldiv64) */
86cc63a182SAnup Patel     uint64_t ns_diff = muldiv64(diff, NANOSECONDS_PER_SECOND, timebase_freq);
87cc63a182SAnup Patel 
88cc63a182SAnup Patel     /*
89cc63a182SAnup Patel      * check if ns_diff overflowed and check if the addition would potentially
90cc63a182SAnup Patel      * overflow
91cc63a182SAnup Patel      */
92cc63a182SAnup Patel     if ((NANOSECONDS_PER_SECOND > timebase_freq && ns_diff < diff) ||
93cc63a182SAnup Patel         ns_diff > INT64_MAX) {
94cc63a182SAnup Patel         next = INT64_MAX;
95cc63a182SAnup Patel     } else {
96cc63a182SAnup Patel         /*
97cc63a182SAnup Patel          * as it is very unlikely qemu_clock_get_ns will return a value
98cc63a182SAnup Patel          * greater than INT64_MAX, no additional check is needed for an
99cc63a182SAnup Patel          * unsigned integer overflow.
100cc63a182SAnup Patel          */
101cc63a182SAnup Patel         next = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) + ns_diff;
102cc63a182SAnup Patel         /*
103cc63a182SAnup Patel          * if ns_diff is INT64_MAX next may still be outside the range
104cc63a182SAnup Patel          * of a signed integer.
105cc63a182SAnup Patel          */
106cc63a182SAnup Patel         next = MIN(next, INT64_MAX);
107cc63a182SAnup Patel     }
108cc63a182SAnup Patel 
1097cbcc538SAtish Patra     timer_mod(mtimer->timers[hartid], next);
110cc63a182SAnup Patel }
111cc63a182SAnup Patel 
112cc63a182SAnup Patel /*
113cc63a182SAnup Patel  * Callback used when the timer set using timer_mod expires.
114cc63a182SAnup Patel  * Should raise the timer interrupt line
115cc63a182SAnup Patel  */
riscv_aclint_mtimer_cb(void * opaque)116b8fb878aSAnup Patel static void riscv_aclint_mtimer_cb(void *opaque)
117cc63a182SAnup Patel {
118b8fb878aSAnup Patel     riscv_aclint_mtimer_callback *state = opaque;
119cc63a182SAnup Patel 
120cc63a182SAnup Patel     qemu_irq_raise(state->s->timer_irqs[state->num]);
121cc63a182SAnup Patel }
122cc63a182SAnup Patel 
123b8fb878aSAnup Patel /* CPU read MTIMER register */
riscv_aclint_mtimer_read(void * opaque,hwaddr addr,unsigned size)124b8fb878aSAnup Patel static uint64_t riscv_aclint_mtimer_read(void *opaque, hwaddr addr,
125b8fb878aSAnup Patel     unsigned size)
126cc63a182SAnup Patel {
127b8fb878aSAnup Patel     RISCVAclintMTimerState *mtimer = opaque;
128b8fb878aSAnup Patel 
129b8fb878aSAnup Patel     if (addr >= mtimer->timecmp_base &&
130b8fb878aSAnup Patel         addr < (mtimer->timecmp_base + (mtimer->num_harts << 3))) {
131b8fb878aSAnup Patel         size_t hartid = mtimer->hartid_base +
132b8fb878aSAnup Patel                         ((addr - mtimer->timecmp_base) >> 3);
13364452a09SMayuresh Chitale         CPUState *cpu = cpu_by_arch_id(hartid);
134b77af26eSRichard Henderson         CPURISCVState *env = cpu ? cpu_env(cpu) : NULL;
135cc63a182SAnup Patel         if (!env) {
136b8fb878aSAnup Patel             qemu_log_mask(LOG_GUEST_ERROR,
137b8fb878aSAnup Patel                           "aclint-mtimer: invalid hartid: %zu", hartid);
138cc63a182SAnup Patel         } else if ((addr & 0x7) == 0) {
139d42df0eaSFrank Chang             /* timecmp_lo for RV32/RV64 or timecmp for RV64 */
1407cbcc538SAtish Patra             uint64_t timecmp = mtimer->timecmp[hartid];
141d42df0eaSFrank Chang             return (size == 4) ? (timecmp & 0xFFFFFFFF) : timecmp;
142cc63a182SAnup Patel         } else if ((addr & 0x7) == 4) {
143cc63a182SAnup Patel             /* timecmp_hi */
1447cbcc538SAtish Patra             uint64_t timecmp = mtimer->timecmp[hartid];
145cc63a182SAnup Patel             return (timecmp >> 32) & 0xFFFFFFFF;
146cc63a182SAnup Patel         } else {
147b8fb878aSAnup Patel             qemu_log_mask(LOG_UNIMP,
148b8fb878aSAnup Patel                           "aclint-mtimer: invalid read: %08x", (uint32_t)addr);
149cc63a182SAnup Patel             return 0;
150cc63a182SAnup Patel         }
151b8fb878aSAnup Patel     } else if (addr == mtimer->time_base) {
152d42df0eaSFrank Chang         /* time_lo for RV32/RV64 or timecmp for RV64 */
153e2f01f3cSFrank Chang         uint64_t rtc = cpu_riscv_read_rtc(mtimer);
154d42df0eaSFrank Chang         return (size == 4) ? (rtc & 0xFFFFFFFF) : rtc;
155b8fb878aSAnup Patel     } else if (addr == mtimer->time_base + 4) {
156cc63a182SAnup Patel         /* time_hi */
157e2f01f3cSFrank Chang         return (cpu_riscv_read_rtc(mtimer) >> 32) & 0xFFFFFFFF;
158cc63a182SAnup Patel     }
159cc63a182SAnup Patel 
160b8fb878aSAnup Patel     qemu_log_mask(LOG_UNIMP,
161b8fb878aSAnup Patel                   "aclint-mtimer: invalid read: %08x", (uint32_t)addr);
162cc63a182SAnup Patel     return 0;
163cc63a182SAnup Patel }
164cc63a182SAnup Patel 
165b8fb878aSAnup Patel /* CPU write MTIMER register */
riscv_aclint_mtimer_write(void * opaque,hwaddr addr,uint64_t value,unsigned size)166b8fb878aSAnup Patel static void riscv_aclint_mtimer_write(void *opaque, hwaddr addr,
167b8fb878aSAnup Patel     uint64_t value, unsigned size)
168cc63a182SAnup Patel {
169b8fb878aSAnup Patel     RISCVAclintMTimerState *mtimer = opaque;
170e2f01f3cSFrank Chang     int i;
171cc63a182SAnup Patel 
172b8fb878aSAnup Patel     if (addr >= mtimer->timecmp_base &&
173b8fb878aSAnup Patel         addr < (mtimer->timecmp_base + (mtimer->num_harts << 3))) {
174b8fb878aSAnup Patel         size_t hartid = mtimer->hartid_base +
175b8fb878aSAnup Patel                         ((addr - mtimer->timecmp_base) >> 3);
17664452a09SMayuresh Chitale         CPUState *cpu = cpu_by_arch_id(hartid);
177b77af26eSRichard Henderson         CPURISCVState *env = cpu ? cpu_env(cpu) : NULL;
178cc63a182SAnup Patel         if (!env) {
179b8fb878aSAnup Patel             qemu_log_mask(LOG_GUEST_ERROR,
180b8fb878aSAnup Patel                           "aclint-mtimer: invalid hartid: %zu", hartid);
181cc63a182SAnup Patel         } else if ((addr & 0x7) == 0) {
182d42df0eaSFrank Chang             if (size == 4) {
183d42df0eaSFrank Chang                 /* timecmp_lo for RV32/RV64 */
1847cbcc538SAtish Patra                 uint64_t timecmp_hi = mtimer->timecmp[hartid] >> 32;
185b8fb878aSAnup Patel                 riscv_aclint_mtimer_write_timecmp(mtimer, RISCV_CPU(cpu), hartid,
186e2f01f3cSFrank Chang                     timecmp_hi << 32 | (value & 0xFFFFFFFF));
187d42df0eaSFrank Chang             } else {
188d42df0eaSFrank Chang                 /* timecmp for RV64 */
189d42df0eaSFrank Chang                 riscv_aclint_mtimer_write_timecmp(mtimer, RISCV_CPU(cpu), hartid,
190e2f01f3cSFrank Chang                                                   value);
191d42df0eaSFrank Chang             }
192cc63a182SAnup Patel         } else if ((addr & 0x7) == 4) {
193d42df0eaSFrank Chang             if (size == 4) {
194d42df0eaSFrank Chang                 /* timecmp_hi for RV32/RV64 */
1957cbcc538SAtish Patra                 uint64_t timecmp_lo = mtimer->timecmp[hartid];
196b8fb878aSAnup Patel                 riscv_aclint_mtimer_write_timecmp(mtimer, RISCV_CPU(cpu), hartid,
197e2f01f3cSFrank Chang                     value << 32 | (timecmp_lo & 0xFFFFFFFF));
198cc63a182SAnup Patel             } else {
199d42df0eaSFrank Chang                 qemu_log_mask(LOG_GUEST_ERROR,
200d42df0eaSFrank Chang                               "aclint-mtimer: invalid timecmp_hi write: %08x",
201d42df0eaSFrank Chang                               (uint32_t)addr);
202d42df0eaSFrank Chang             }
203d42df0eaSFrank Chang         } else {
204b8fb878aSAnup Patel             qemu_log_mask(LOG_UNIMP,
205b8fb878aSAnup Patel                           "aclint-mtimer: invalid timecmp write: %08x",
206b8fb878aSAnup Patel                           (uint32_t)addr);
207cc63a182SAnup Patel         }
208cc63a182SAnup Patel         return;
209e2f01f3cSFrank Chang     } else if (addr == mtimer->time_base || addr == mtimer->time_base + 4) {
210e2f01f3cSFrank Chang         uint64_t rtc_r = cpu_riscv_read_rtc_raw(mtimer->timebase_freq);
211e0922b73SJason Chien         uint64_t rtc = cpu_riscv_read_rtc(mtimer);
212e2f01f3cSFrank Chang 
213e2f01f3cSFrank Chang         if (addr == mtimer->time_base) {
214e2f01f3cSFrank Chang             if (size == 4) {
215e2f01f3cSFrank Chang                 /* time_lo for RV32/RV64 */
216e0922b73SJason Chien                 mtimer->time_delta = ((rtc & ~0xFFFFFFFFULL) | value) - rtc_r;
217e2f01f3cSFrank Chang             } else {
218e2f01f3cSFrank Chang                 /* time for RV64 */
219e2f01f3cSFrank Chang                 mtimer->time_delta = value - rtc_r;
220e2f01f3cSFrank Chang             }
221e2f01f3cSFrank Chang         } else {
222e2f01f3cSFrank Chang             if (size == 4) {
223e2f01f3cSFrank Chang                 /* time_hi for RV32/RV64 */
224e0922b73SJason Chien                 mtimer->time_delta = (value << 32 | (rtc & 0xFFFFFFFF)) - rtc_r;
225e2f01f3cSFrank Chang             } else {
226e2f01f3cSFrank Chang                 qemu_log_mask(LOG_GUEST_ERROR,
227e2f01f3cSFrank Chang                               "aclint-mtimer: invalid time_hi write: %08x",
228e2f01f3cSFrank Chang                               (uint32_t)addr);
229cc63a182SAnup Patel                 return;
230e2f01f3cSFrank Chang             }
231e2f01f3cSFrank Chang         }
232e2f01f3cSFrank Chang 
233e2f01f3cSFrank Chang         /* Check if timer interrupt is triggered for each hart. */
234e2f01f3cSFrank Chang         for (i = 0; i < mtimer->num_harts; i++) {
23564452a09SMayuresh Chitale             CPUState *cpu = cpu_by_arch_id(mtimer->hartid_base + i);
236b77af26eSRichard Henderson             CPURISCVState *env = cpu ? cpu_env(cpu) : NULL;
237e2f01f3cSFrank Chang             if (!env) {
238e2f01f3cSFrank Chang                 continue;
239e2f01f3cSFrank Chang             }
240e2f01f3cSFrank Chang             riscv_aclint_mtimer_write_timecmp(mtimer, RISCV_CPU(cpu),
24177046729SAtish Patra                                               mtimer->hartid_base + i,
2427cbcc538SAtish Patra                                               mtimer->timecmp[i]);
243e2f01f3cSFrank Chang         }
244cc63a182SAnup Patel         return;
245cc63a182SAnup Patel     }
246cc63a182SAnup Patel 
247b8fb878aSAnup Patel     qemu_log_mask(LOG_UNIMP,
248b8fb878aSAnup Patel                   "aclint-mtimer: invalid write: %08x", (uint32_t)addr);
249cc63a182SAnup Patel }
250cc63a182SAnup Patel 
251b8fb878aSAnup Patel static const MemoryRegionOps riscv_aclint_mtimer_ops = {
252b8fb878aSAnup Patel     .read = riscv_aclint_mtimer_read,
253b8fb878aSAnup Patel     .write = riscv_aclint_mtimer_write,
254cc63a182SAnup Patel     .endianness = DEVICE_LITTLE_ENDIAN,
255cc63a182SAnup Patel     .valid = {
256cc63a182SAnup Patel         .min_access_size = 4,
257cc63a182SAnup Patel         .max_access_size = 8
258231a90c0SFrank Chang     },
259231a90c0SFrank Chang     .impl = {
260231a90c0SFrank Chang         .min_access_size = 4,
261231a90c0SFrank Chang         .max_access_size = 8,
262cc63a182SAnup Patel     }
263cc63a182SAnup Patel };
264cc63a182SAnup Patel 
265b8fb878aSAnup Patel static Property riscv_aclint_mtimer_properties[] = {
266b8fb878aSAnup Patel     DEFINE_PROP_UINT32("hartid-base", RISCVAclintMTimerState,
267b8fb878aSAnup Patel         hartid_base, 0),
268b8fb878aSAnup Patel     DEFINE_PROP_UINT32("num-harts", RISCVAclintMTimerState, num_harts, 1),
269b8fb878aSAnup Patel     DEFINE_PROP_UINT32("timecmp-base", RISCVAclintMTimerState,
270b8fb878aSAnup Patel         timecmp_base, RISCV_ACLINT_DEFAULT_MTIMECMP),
271b8fb878aSAnup Patel     DEFINE_PROP_UINT32("time-base", RISCVAclintMTimerState,
272b8fb878aSAnup Patel         time_base, RISCV_ACLINT_DEFAULT_MTIME),
273b8fb878aSAnup Patel     DEFINE_PROP_UINT32("aperture-size", RISCVAclintMTimerState,
274b8fb878aSAnup Patel         aperture_size, RISCV_ACLINT_DEFAULT_MTIMER_SIZE),
275b8fb878aSAnup Patel     DEFINE_PROP_UINT32("timebase-freq", RISCVAclintMTimerState,
276b8fb878aSAnup Patel         timebase_freq, 0),
277cc63a182SAnup Patel     DEFINE_PROP_END_OF_LIST(),
278cc63a182SAnup Patel };
279cc63a182SAnup Patel 
riscv_aclint_mtimer_realize(DeviceState * dev,Error ** errp)280b8fb878aSAnup Patel static void riscv_aclint_mtimer_realize(DeviceState *dev, Error **errp)
281cc63a182SAnup Patel {
282b8fb878aSAnup Patel     RISCVAclintMTimerState *s = RISCV_ACLINT_MTIMER(dev);
283b8fb878aSAnup Patel     int i;
284b8fb878aSAnup Patel 
285b8fb878aSAnup Patel     memory_region_init_io(&s->mmio, OBJECT(dev), &riscv_aclint_mtimer_ops,
286b8fb878aSAnup Patel                           s, TYPE_RISCV_ACLINT_MTIMER, s->aperture_size);
287cc63a182SAnup Patel     sysbus_init_mmio(SYS_BUS_DEVICE(dev), &s->mmio);
288cc63a182SAnup Patel 
289b21e2380SMarkus Armbruster     s->timer_irqs = g_new(qemu_irq, s->num_harts);
290cc63a182SAnup Patel     qdev_init_gpio_out(dev, s->timer_irqs, s->num_harts);
291cc63a182SAnup Patel 
2927cbcc538SAtish Patra     s->timers = g_new0(QEMUTimer *, s->num_harts);
2937cbcc538SAtish Patra     s->timecmp = g_new0(uint64_t, s->num_harts);
294b8fb878aSAnup Patel     /* Claim timer interrupt bits */
295b8fb878aSAnup Patel     for (i = 0; i < s->num_harts; i++) {
29664452a09SMayuresh Chitale         RISCVCPU *cpu = RISCV_CPU(cpu_by_arch_id(s->hartid_base + i));
297b8fb878aSAnup Patel         if (riscv_cpu_claim_interrupts(cpu, MIP_MTIP) < 0) {
298b8fb878aSAnup Patel             error_report("MTIP already claimed");
299b8fb878aSAnup Patel             exit(1);
300b8fb878aSAnup Patel         }
301b8fb878aSAnup Patel     }
302cc63a182SAnup Patel }
303cc63a182SAnup Patel 
riscv_aclint_mtimer_reset_enter(Object * obj,ResetType type)3048124f819SJim Shu static void riscv_aclint_mtimer_reset_enter(Object *obj, ResetType type)
3058124f819SJim Shu {
3068124f819SJim Shu     /*
3078124f819SJim Shu      * According to RISC-V ACLINT spec:
3088124f819SJim Shu      *   - On MTIMER device reset, the MTIME register is cleared to zero.
3098124f819SJim Shu      *   - On MTIMER device reset, the MTIMECMP registers are in unknown state.
3108124f819SJim Shu      */
3118124f819SJim Shu     RISCVAclintMTimerState *mtimer = RISCV_ACLINT_MTIMER(obj);
3128124f819SJim Shu 
3138124f819SJim Shu     /*
3148124f819SJim Shu      * Clear mtime register by writing to 0 it.
3158124f819SJim Shu      * Pending mtime interrupts will also be cleared at the same time.
3168124f819SJim Shu      */
3178124f819SJim Shu     riscv_aclint_mtimer_write(mtimer, mtimer->time_base, 0, 8);
3188124f819SJim Shu }
3198124f819SJim Shu 
3207cbcc538SAtish Patra static const VMStateDescription vmstate_riscv_mtimer = {
3217cbcc538SAtish Patra     .name = "riscv_mtimer",
3227cbcc538SAtish Patra     .version_id = 1,
3237cbcc538SAtish Patra     .minimum_version_id = 1,
324*45b1f81dSRichard Henderson     .fields = (const VMStateField[]) {
3257cbcc538SAtish Patra             VMSTATE_VARRAY_UINT32(timecmp, RISCVAclintMTimerState,
3267cbcc538SAtish Patra                                   num_harts, 0,
3277cbcc538SAtish Patra                                   vmstate_info_uint64, uint64_t),
3287cbcc538SAtish Patra             VMSTATE_END_OF_LIST()
3297cbcc538SAtish Patra         }
3307cbcc538SAtish Patra };
3317cbcc538SAtish Patra 
riscv_aclint_mtimer_class_init(ObjectClass * klass,void * data)332b8fb878aSAnup Patel static void riscv_aclint_mtimer_class_init(ObjectClass *klass, void *data)
333cc63a182SAnup Patel {
334cc63a182SAnup Patel     DeviceClass *dc = DEVICE_CLASS(klass);
335b8fb878aSAnup Patel     dc->realize = riscv_aclint_mtimer_realize;
336b8fb878aSAnup Patel     device_class_set_props(dc, riscv_aclint_mtimer_properties);
3378124f819SJim Shu     ResettableClass *rc = RESETTABLE_CLASS(klass);
3388124f819SJim Shu     rc->phases.enter = riscv_aclint_mtimer_reset_enter;
3397cbcc538SAtish Patra     dc->vmsd = &vmstate_riscv_mtimer;
340cc63a182SAnup Patel }
341cc63a182SAnup Patel 
342b8fb878aSAnup Patel static const TypeInfo riscv_aclint_mtimer_info = {
343b8fb878aSAnup Patel     .name          = TYPE_RISCV_ACLINT_MTIMER,
344cc63a182SAnup Patel     .parent        = TYPE_SYS_BUS_DEVICE,
345b8fb878aSAnup Patel     .instance_size = sizeof(RISCVAclintMTimerState),
346b8fb878aSAnup Patel     .class_init    = riscv_aclint_mtimer_class_init,
347cc63a182SAnup Patel };
348cc63a182SAnup Patel 
349cc63a182SAnup Patel /*
350b8fb878aSAnup Patel  * Create ACLINT MTIMER device.
351cc63a182SAnup Patel  */
riscv_aclint_mtimer_create(hwaddr addr,hwaddr size,uint32_t hartid_base,uint32_t num_harts,uint32_t timecmp_base,uint32_t time_base,uint32_t timebase_freq,bool provide_rdtime)352b8fb878aSAnup Patel DeviceState *riscv_aclint_mtimer_create(hwaddr addr, hwaddr size,
353b8fb878aSAnup Patel     uint32_t hartid_base, uint32_t num_harts,
354cc63a182SAnup Patel     uint32_t timecmp_base, uint32_t time_base, uint32_t timebase_freq,
355cc63a182SAnup Patel     bool provide_rdtime)
356cc63a182SAnup Patel {
357cc63a182SAnup Patel     int i;
358b8fb878aSAnup Patel     DeviceState *dev = qdev_new(TYPE_RISCV_ACLINT_MTIMER);
3597cbcc538SAtish Patra     RISCVAclintMTimerState *s = RISCV_ACLINT_MTIMER(dev);
360cc63a182SAnup Patel 
361b8fb878aSAnup Patel     assert(num_harts <= RISCV_ACLINT_MAX_HARTS);
362b8fb878aSAnup Patel     assert(!(addr & 0x7));
363b8fb878aSAnup Patel     assert(!(timecmp_base & 0x7));
364b8fb878aSAnup Patel     assert(!(time_base & 0x7));
365b8fb878aSAnup Patel 
366cc63a182SAnup Patel     qdev_prop_set_uint32(dev, "hartid-base", hartid_base);
367cc63a182SAnup Patel     qdev_prop_set_uint32(dev, "num-harts", num_harts);
368cc63a182SAnup Patel     qdev_prop_set_uint32(dev, "timecmp-base", timecmp_base);
369cc63a182SAnup Patel     qdev_prop_set_uint32(dev, "time-base", time_base);
370cc63a182SAnup Patel     qdev_prop_set_uint32(dev, "aperture-size", size);
371cc63a182SAnup Patel     qdev_prop_set_uint32(dev, "timebase-freq", timebase_freq);
372cc63a182SAnup Patel     sysbus_realize_and_unref(SYS_BUS_DEVICE(dev), &error_fatal);
373cc63a182SAnup Patel     sysbus_mmio_map(SYS_BUS_DEVICE(dev), 0, addr);
374cc63a182SAnup Patel 
375cc63a182SAnup Patel     for (i = 0; i < num_harts; i++) {
37664452a09SMayuresh Chitale         CPUState *cpu = cpu_by_arch_id(hartid_base + i);
377cc63a182SAnup Patel         RISCVCPU *rvcpu = RISCV_CPU(cpu);
378b77af26eSRichard Henderson         CPURISCVState *env = cpu ? cpu_env(cpu) : NULL;
379b8fb878aSAnup Patel         riscv_aclint_mtimer_callback *cb =
380b21e2380SMarkus Armbruster             g_new0(riscv_aclint_mtimer_callback, 1);
381cc63a182SAnup Patel 
382cc63a182SAnup Patel         if (!env) {
383cc63a182SAnup Patel             g_free(cb);
384cc63a182SAnup Patel             continue;
385cc63a182SAnup Patel         }
386cc63a182SAnup Patel         if (provide_rdtime) {
387e2f01f3cSFrank Chang             riscv_cpu_set_rdtime_fn(env, cpu_riscv_read_rtc, dev);
388cc63a182SAnup Patel         }
389cc63a182SAnup Patel 
3907cbcc538SAtish Patra         cb->s = s;
391cc63a182SAnup Patel         cb->num = i;
3927cbcc538SAtish Patra         s->timers[i] = timer_new_ns(QEMU_CLOCK_VIRTUAL,
393b8fb878aSAnup Patel                                   &riscv_aclint_mtimer_cb, cb);
3947cbcc538SAtish Patra         s->timecmp[i] = 0;
395cc63a182SAnup Patel 
396cc63a182SAnup Patel         qdev_connect_gpio_out(dev, i,
397cc63a182SAnup Patel                               qdev_get_gpio_in(DEVICE(rvcpu), IRQ_M_TIMER));
398cc63a182SAnup Patel     }
399cc63a182SAnup Patel 
400cc63a182SAnup Patel     return dev;
401cc63a182SAnup Patel }
402b8fb878aSAnup Patel 
403b8fb878aSAnup Patel /* CPU read [M|S]SWI register */
riscv_aclint_swi_read(void * opaque,hwaddr addr,unsigned size)404b8fb878aSAnup Patel static uint64_t riscv_aclint_swi_read(void *opaque, hwaddr addr,
405b8fb878aSAnup Patel     unsigned size)
406b8fb878aSAnup Patel {
407b8fb878aSAnup Patel     RISCVAclintSwiState *swi = opaque;
408b8fb878aSAnup Patel 
409b8fb878aSAnup Patel     if (addr < (swi->num_harts << 2)) {
410b8fb878aSAnup Patel         size_t hartid = swi->hartid_base + (addr >> 2);
41164452a09SMayuresh Chitale         CPUState *cpu = cpu_by_arch_id(hartid);
412b77af26eSRichard Henderson         CPURISCVState *env = cpu ? cpu_env(cpu) : NULL;
413b8fb878aSAnup Patel         if (!env) {
414b8fb878aSAnup Patel             qemu_log_mask(LOG_GUEST_ERROR,
415b8fb878aSAnup Patel                           "aclint-swi: invalid hartid: %zu", hartid);
416b8fb878aSAnup Patel         } else if ((addr & 0x3) == 0) {
417b8fb878aSAnup Patel             return (swi->sswi) ? 0 : ((env->mip & MIP_MSIP) > 0);
418b8fb878aSAnup Patel         }
419b8fb878aSAnup Patel     }
420b8fb878aSAnup Patel 
421b8fb878aSAnup Patel     qemu_log_mask(LOG_UNIMP,
422b8fb878aSAnup Patel                   "aclint-swi: invalid read: %08x", (uint32_t)addr);
423b8fb878aSAnup Patel     return 0;
424b8fb878aSAnup Patel }
425b8fb878aSAnup Patel 
426b8fb878aSAnup Patel /* CPU write [M|S]SWI register */
riscv_aclint_swi_write(void * opaque,hwaddr addr,uint64_t value,unsigned size)427b8fb878aSAnup Patel static void riscv_aclint_swi_write(void *opaque, hwaddr addr, uint64_t value,
428b8fb878aSAnup Patel         unsigned size)
429b8fb878aSAnup Patel {
430b8fb878aSAnup Patel     RISCVAclintSwiState *swi = opaque;
431b8fb878aSAnup Patel 
432b8fb878aSAnup Patel     if (addr < (swi->num_harts << 2)) {
433b8fb878aSAnup Patel         size_t hartid = swi->hartid_base + (addr >> 2);
43464452a09SMayuresh Chitale         CPUState *cpu = cpu_by_arch_id(hartid);
435b77af26eSRichard Henderson         CPURISCVState *env = cpu ? cpu_env(cpu) : NULL;
436b8fb878aSAnup Patel         if (!env) {
437b8fb878aSAnup Patel             qemu_log_mask(LOG_GUEST_ERROR,
438b8fb878aSAnup Patel                           "aclint-swi: invalid hartid: %zu", hartid);
439b8fb878aSAnup Patel         } else if ((addr & 0x3) == 0) {
440b8fb878aSAnup Patel             if (value & 0x1) {
441b8fb878aSAnup Patel                 qemu_irq_raise(swi->soft_irqs[hartid - swi->hartid_base]);
442b8fb878aSAnup Patel             } else {
443b8fb878aSAnup Patel                 if (!swi->sswi) {
444b8fb878aSAnup Patel                     qemu_irq_lower(swi->soft_irqs[hartid - swi->hartid_base]);
445b8fb878aSAnup Patel                 }
446b8fb878aSAnup Patel             }
447b8fb878aSAnup Patel             return;
448b8fb878aSAnup Patel         }
449b8fb878aSAnup Patel     }
450b8fb878aSAnup Patel 
451b8fb878aSAnup Patel     qemu_log_mask(LOG_UNIMP,
452b8fb878aSAnup Patel                   "aclint-swi: invalid write: %08x", (uint32_t)addr);
453b8fb878aSAnup Patel }
454b8fb878aSAnup Patel 
455b8fb878aSAnup Patel static const MemoryRegionOps riscv_aclint_swi_ops = {
456b8fb878aSAnup Patel     .read = riscv_aclint_swi_read,
457b8fb878aSAnup Patel     .write = riscv_aclint_swi_write,
458b8fb878aSAnup Patel     .endianness = DEVICE_LITTLE_ENDIAN,
459b8fb878aSAnup Patel     .valid = {
460b8fb878aSAnup Patel         .min_access_size = 4,
461b8fb878aSAnup Patel         .max_access_size = 4
462b8fb878aSAnup Patel     }
463b8fb878aSAnup Patel };
464b8fb878aSAnup Patel 
465b8fb878aSAnup Patel static Property riscv_aclint_swi_properties[] = {
466b8fb878aSAnup Patel     DEFINE_PROP_UINT32("hartid-base", RISCVAclintSwiState, hartid_base, 0),
467b8fb878aSAnup Patel     DEFINE_PROP_UINT32("num-harts", RISCVAclintSwiState, num_harts, 1),
468b8fb878aSAnup Patel     DEFINE_PROP_UINT32("sswi", RISCVAclintSwiState, sswi, false),
469b8fb878aSAnup Patel     DEFINE_PROP_END_OF_LIST(),
470b8fb878aSAnup Patel };
471b8fb878aSAnup Patel 
riscv_aclint_swi_realize(DeviceState * dev,Error ** errp)472b8fb878aSAnup Patel static void riscv_aclint_swi_realize(DeviceState *dev, Error **errp)
473b8fb878aSAnup Patel {
474b8fb878aSAnup Patel     RISCVAclintSwiState *swi = RISCV_ACLINT_SWI(dev);
475b8fb878aSAnup Patel     int i;
476b8fb878aSAnup Patel 
477b8fb878aSAnup Patel     memory_region_init_io(&swi->mmio, OBJECT(dev), &riscv_aclint_swi_ops, swi,
478b8fb878aSAnup Patel                           TYPE_RISCV_ACLINT_SWI, RISCV_ACLINT_SWI_SIZE);
479b8fb878aSAnup Patel     sysbus_init_mmio(SYS_BUS_DEVICE(dev), &swi->mmio);
480b8fb878aSAnup Patel 
481b21e2380SMarkus Armbruster     swi->soft_irqs = g_new(qemu_irq, swi->num_harts);
482b8fb878aSAnup Patel     qdev_init_gpio_out(dev, swi->soft_irqs, swi->num_harts);
483b8fb878aSAnup Patel 
484b8fb878aSAnup Patel     /* Claim software interrupt bits */
485b8fb878aSAnup Patel     for (i = 0; i < swi->num_harts; i++) {
486b8fb878aSAnup Patel         RISCVCPU *cpu = RISCV_CPU(qemu_get_cpu(swi->hartid_base + i));
4879323e79fSPeter Maydell         /* We don't claim mip.SSIP because it is writable by software */
488b8fb878aSAnup Patel         if (riscv_cpu_claim_interrupts(cpu, swi->sswi ? 0 : MIP_MSIP) < 0) {
489b8fb878aSAnup Patel             error_report("MSIP already claimed");
490b8fb878aSAnup Patel             exit(1);
491b8fb878aSAnup Patel         }
492b8fb878aSAnup Patel     }
493b8fb878aSAnup Patel }
494b8fb878aSAnup Patel 
riscv_aclint_swi_reset_enter(Object * obj,ResetType type)4958124f819SJim Shu static void riscv_aclint_swi_reset_enter(Object *obj, ResetType type)
4968124f819SJim Shu {
4978124f819SJim Shu     /*
4988124f819SJim Shu      * According to RISC-V ACLINT spec:
4998124f819SJim Shu      *   - On MSWI device reset, each MSIP register is cleared to zero.
5008124f819SJim Shu      *
5018124f819SJim Shu      * p.s. SSWI device reset does nothing since SETSIP register always reads 0.
5028124f819SJim Shu      */
5038124f819SJim Shu     RISCVAclintSwiState *swi = RISCV_ACLINT_SWI(obj);
5048124f819SJim Shu     int i;
5058124f819SJim Shu 
5068124f819SJim Shu     if (!swi->sswi) {
5078124f819SJim Shu         for (i = 0; i < swi->num_harts; i++) {
5088124f819SJim Shu             /* Clear MSIP registers by lowering software interrupts. */
5098124f819SJim Shu             qemu_irq_lower(swi->soft_irqs[i]);
5108124f819SJim Shu         }
5118124f819SJim Shu     }
5128124f819SJim Shu }
5138124f819SJim Shu 
riscv_aclint_swi_class_init(ObjectClass * klass,void * data)514b8fb878aSAnup Patel static void riscv_aclint_swi_class_init(ObjectClass *klass, void *data)
515b8fb878aSAnup Patel {
516b8fb878aSAnup Patel     DeviceClass *dc = DEVICE_CLASS(klass);
517b8fb878aSAnup Patel     dc->realize = riscv_aclint_swi_realize;
518b8fb878aSAnup Patel     device_class_set_props(dc, riscv_aclint_swi_properties);
5198124f819SJim Shu     ResettableClass *rc = RESETTABLE_CLASS(klass);
5208124f819SJim Shu     rc->phases.enter = riscv_aclint_swi_reset_enter;
521b8fb878aSAnup Patel }
522b8fb878aSAnup Patel 
523b8fb878aSAnup Patel static const TypeInfo riscv_aclint_swi_info = {
524b8fb878aSAnup Patel     .name          = TYPE_RISCV_ACLINT_SWI,
525b8fb878aSAnup Patel     .parent        = TYPE_SYS_BUS_DEVICE,
526b8fb878aSAnup Patel     .instance_size = sizeof(RISCVAclintSwiState),
527b8fb878aSAnup Patel     .class_init    = riscv_aclint_swi_class_init,
528b8fb878aSAnup Patel };
529b8fb878aSAnup Patel 
530b8fb878aSAnup Patel /*
531b8fb878aSAnup Patel  * Create ACLINT [M|S]SWI device.
532b8fb878aSAnup Patel  */
riscv_aclint_swi_create(hwaddr addr,uint32_t hartid_base,uint32_t num_harts,bool sswi)533b8fb878aSAnup Patel DeviceState *riscv_aclint_swi_create(hwaddr addr, uint32_t hartid_base,
534b8fb878aSAnup Patel     uint32_t num_harts, bool sswi)
535b8fb878aSAnup Patel {
536b8fb878aSAnup Patel     int i;
537b8fb878aSAnup Patel     DeviceState *dev = qdev_new(TYPE_RISCV_ACLINT_SWI);
538b8fb878aSAnup Patel 
539b8fb878aSAnup Patel     assert(num_harts <= RISCV_ACLINT_MAX_HARTS);
540b8fb878aSAnup Patel     assert(!(addr & 0x3));
541b8fb878aSAnup Patel 
542b8fb878aSAnup Patel     qdev_prop_set_uint32(dev, "hartid-base", hartid_base);
543b8fb878aSAnup Patel     qdev_prop_set_uint32(dev, "num-harts", num_harts);
544b8fb878aSAnup Patel     qdev_prop_set_uint32(dev, "sswi", sswi ? true : false);
545b8fb878aSAnup Patel     sysbus_realize_and_unref(SYS_BUS_DEVICE(dev), &error_fatal);
546b8fb878aSAnup Patel     sysbus_mmio_map(SYS_BUS_DEVICE(dev), 0, addr);
547b8fb878aSAnup Patel 
548b8fb878aSAnup Patel     for (i = 0; i < num_harts; i++) {
54964452a09SMayuresh Chitale         CPUState *cpu = cpu_by_arch_id(hartid_base + i);
550b8fb878aSAnup Patel         RISCVCPU *rvcpu = RISCV_CPU(cpu);
551b8fb878aSAnup Patel 
552b8fb878aSAnup Patel         qdev_connect_gpio_out(dev, i,
553b8fb878aSAnup Patel                               qdev_get_gpio_in(DEVICE(rvcpu),
554b8fb878aSAnup Patel                                   (sswi) ? IRQ_S_SOFT : IRQ_M_SOFT));
555b8fb878aSAnup Patel     }
556b8fb878aSAnup Patel 
557b8fb878aSAnup Patel     return dev;
558b8fb878aSAnup Patel }
559b8fb878aSAnup Patel 
riscv_aclint_register_types(void)560b8fb878aSAnup Patel static void riscv_aclint_register_types(void)
561b8fb878aSAnup Patel {
562b8fb878aSAnup Patel     type_register_static(&riscv_aclint_mtimer_info);
563b8fb878aSAnup Patel     type_register_static(&riscv_aclint_swi_info);
564b8fb878aSAnup Patel }
565b8fb878aSAnup Patel 
566b8fb878aSAnup Patel type_init(riscv_aclint_register_types)
567