| 
									
										
										
										
											2018-03-03 01:31:12 +13:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2021-08-31 16:36:01 +05:30
										 |  |  |  * RISC-V ACLINT (Advanced Core Local Interruptor) | 
					
						
							|  |  |  |  * URL: https://github.com/riscv/riscv-aclint
 | 
					
						
							| 
									
										
										
										
											2018-03-03 01:31:12 +13:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Copyright (c) 2016-2017 Sagar Karandikar, sagark@eecs.berkeley.edu | 
					
						
							|  |  |  |  * Copyright (c) 2017 SiFive, Inc. | 
					
						
							| 
									
										
										
										
											2021-08-31 16:36:01 +05:30
										 |  |  |  * Copyright (c) 2021 Western Digital Corporation or its affiliates. | 
					
						
							| 
									
										
										
										
											2018-03-03 01:31:12 +13:00
										 |  |  |  * | 
					
						
							|  |  |  |  * This provides real-time clock, timer and interprocessor interrupts. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is free software; you can redistribute it and/or modify it | 
					
						
							|  |  |  |  * under the terms and conditions of the GNU General Public License, | 
					
						
							|  |  |  |  * version 2 or later, as published by the Free Software Foundation. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is distributed in the hope it will be useful, but WITHOUT | 
					
						
							|  |  |  |  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | 
					
						
							|  |  |  |  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for | 
					
						
							|  |  |  |  * more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU General Public License along with | 
					
						
							|  |  |  |  * this program.  If not, see <http://www.gnu.org/licenses/>.
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "qemu/osdep.h"
 | 
					
						
							| 
									
										
											  
											
												qdev: Convert uses of qdev_create() with Coccinelle
This is the transformation explained in the commit before previous.
Takes care of just one pattern that needs conversion.  More to come in
this series.
Coccinelle script:
    @ depends on !(file in "hw/arm/highbank.c")@
    expression bus, type_name, dev, expr;
    @@
    -    dev = qdev_create(bus, type_name);
    +    dev = qdev_new(type_name);
         ... when != dev = expr
    -    qdev_init_nofail(dev);
    +    qdev_realize_and_unref(dev, bus, &error_fatal);
    @@
    expression bus, type_name, dev, expr;
    identifier DOWN;
    @@
    -    dev = DOWN(qdev_create(bus, type_name));
    +    dev = DOWN(qdev_new(type_name));
         ... when != dev = expr
    -    qdev_init_nofail(DEVICE(dev));
    +    qdev_realize_and_unref(DEVICE(dev), bus, &error_fatal);
    @@
    expression bus, type_name, expr;
    identifier dev;
    @@
    -    DeviceState *dev = qdev_create(bus, type_name);
    +    DeviceState *dev = qdev_new(type_name);
         ... when != dev = expr
    -    qdev_init_nofail(dev);
    +    qdev_realize_and_unref(dev, bus, &error_fatal);
    @@
    expression bus, type_name, dev, expr, errp;
    symbol true;
    @@
    -    dev = qdev_create(bus, type_name);
    +    dev = qdev_new(type_name);
         ... when != dev = expr
    -    object_property_set_bool(OBJECT(dev), true, "realized", errp);
    +    qdev_realize_and_unref(dev, bus, errp);
    @@
    expression bus, type_name, expr, errp;
    identifier dev;
    symbol true;
    @@
    -    DeviceState *dev = qdev_create(bus, type_name);
    +    DeviceState *dev = qdev_new(type_name);
         ... when != dev = expr
    -    object_property_set_bool(OBJECT(dev), true, "realized", errp);
    +    qdev_realize_and_unref(dev, bus, errp);
The first rule exempts hw/arm/highbank.c, because it matches along two
control flow paths there, with different @type_name.  Covered by the
next commit's manual conversions.
Missing #include "qapi/error.h" added manually.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20200610053247.1583243-10-armbru@redhat.com>
[Conflicts in hw/misc/empty_slot.c and hw/sparc/leon3.c resolved]
											
										 
											2020-06-10 07:31:58 +02:00
										 |  |  | #include "qapi/error.h"
 | 
					
						
							| 
									
										
										
										
											2018-03-03 01:31:12 +13:00
										 |  |  | #include "qemu/error-report.h"
 | 
					
						
							| 
									
										
										
										
											2021-08-31 16:36:01 +05:30
										 |  |  | #include "qemu/log.h"
 | 
					
						
							| 
									
										
										
										
											2019-05-23 16:35:07 +02:00
										 |  |  | #include "qemu/module.h"
 | 
					
						
							| 
									
										
										
										
											2018-03-03 01:31:12 +13:00
										 |  |  | #include "hw/sysbus.h"
 | 
					
						
							|  |  |  | #include "target/riscv/cpu.h"
 | 
					
						
							| 
									
										
										
										
											2019-08-12 07:23:51 +02:00
										 |  |  | #include "hw/qdev-properties.h"
 | 
					
						
							| 
									
										
										
										
											2021-08-31 16:36:00 +05:30
										 |  |  | #include "hw/intc/riscv_aclint.h"
 | 
					
						
							| 
									
										
										
										
											2018-03-03 01:31:12 +13:00
										 |  |  | #include "qemu/timer.h"
 | 
					
						
							| 
									
										
										
										
											2021-08-30 15:34:36 +10:00
										 |  |  | #include "hw/irq.h"
 | 
					
						
							| 
									
										
										
										
											2022-08-24 15:13:55 -07:00
										 |  |  | #include "migration/vmstate.h"
 | 
					
						
							| 
									
										
										
										
											2021-08-30 15:34:36 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-31 16:36:01 +05:30
										 |  |  | typedef struct riscv_aclint_mtimer_callback { | 
					
						
							|  |  |  |     RISCVAclintMTimerState *s; | 
					
						
							| 
									
										
										
										
											2021-08-30 15:34:36 +10:00
										 |  |  |     int num; | 
					
						
							| 
									
										
										
										
											2021-08-31 16:36:01 +05:30
										 |  |  | } riscv_aclint_mtimer_callback; | 
					
						
							| 
									
										
										
										
											2018-03-03 01:31:12 +13:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-20 16:08:59 +08:00
										 |  |  | static uint64_t cpu_riscv_read_rtc_raw(uint32_t timebase_freq) | 
					
						
							| 
									
										
										
										
											2018-03-03 01:31:12 +13:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-03-03 14:30:07 +13:00
										 |  |  |     return muldiv64(qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL), | 
					
						
							| 
									
										
										
										
											2020-09-01 09:39:10 +08:00
										 |  |  |         timebase_freq, NANOSECONDS_PER_SECOND); | 
					
						
							| 
									
										
										
										
											2018-03-03 01:31:12 +13:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-20 16:08:59 +08:00
										 |  |  | static uint64_t cpu_riscv_read_rtc(void *opaque) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     RISCVAclintMTimerState *mtimer = opaque; | 
					
						
							|  |  |  |     return cpu_riscv_read_rtc_raw(mtimer->timebase_freq) + mtimer->time_delta; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-03 01:31:12 +13:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Called when timecmp is written to update the QEMU timer or immediately | 
					
						
							|  |  |  |  * trigger timer interrupt if mtimecmp <= current timer value. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2021-08-31 16:36:01 +05:30
										 |  |  | static void riscv_aclint_mtimer_write_timecmp(RISCVAclintMTimerState *mtimer, | 
					
						
							|  |  |  |                                               RISCVCPU *cpu, | 
					
						
							|  |  |  |                                               int hartid, | 
					
						
							| 
									
										
										
										
											2022-04-20 16:08:59 +08:00
										 |  |  |                                               uint64_t value) | 
					
						
							| 
									
										
										
										
											2018-03-03 01:31:12 +13:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2022-04-20 16:08:59 +08:00
										 |  |  |     uint32_t timebase_freq = mtimer->timebase_freq; | 
					
						
							| 
									
										
										
										
											2018-03-03 01:31:12 +13:00
										 |  |  |     uint64_t next; | 
					
						
							|  |  |  |     uint64_t diff; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-07-28 08:24:39 +00:00
										 |  |  |     uint64_t rtc = cpu_riscv_read_rtc(mtimer); | 
					
						
							| 
									
										
										
										
											2018-03-03 01:31:12 +13:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-24 15:13:55 -07:00
										 |  |  |     /* Compute the relative hartid w.r.t the socket */ | 
					
						
							|  |  |  |     hartid = hartid - mtimer->hartid_base; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     mtimer->timecmp[hartid] = value; | 
					
						
							| 
									
										
										
										
											2023-07-28 08:24:39 +00:00
										 |  |  |     if (mtimer->timecmp[hartid] <= rtc) { | 
					
						
							| 
									
										
										
										
											2021-08-31 16:36:01 +05:30
										 |  |  |         /*
 | 
					
						
							|  |  |  |          * If we're setting an MTIMECMP value in the "past", | 
					
						
							|  |  |  |          * immediately raise the timer interrupt | 
					
						
							|  |  |  |          */ | 
					
						
							| 
									
										
										
										
											2022-08-24 15:13:55 -07:00
										 |  |  |         qemu_irq_raise(mtimer->timer_irqs[hartid]); | 
					
						
							| 
									
										
										
										
											2018-03-03 01:31:12 +13:00
										 |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* otherwise, set up the future timer interrupt */ | 
					
						
							| 
									
										
										
										
											2022-08-24 15:13:55 -07:00
										 |  |  |     qemu_irq_lower(mtimer->timer_irqs[hartid]); | 
					
						
							| 
									
										
										
										
											2023-07-28 08:24:39 +00:00
										 |  |  |     diff = mtimer->timecmp[hartid] - rtc; | 
					
						
							| 
									
										
										
										
											2018-03-03 01:31:12 +13:00
										 |  |  |     /* back to ns (note args switched in muldiv64) */ | 
					
						
							| 
									
										
										
										
											2021-08-27 17:23:25 +02:00
										 |  |  |     uint64_t ns_diff = muldiv64(diff, NANOSECONDS_PER_SECOND, timebase_freq); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * check if ns_diff overflowed and check if the addition would potentially | 
					
						
							|  |  |  |      * overflow | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if ((NANOSECONDS_PER_SECOND > timebase_freq && ns_diff < diff) || | 
					
						
							|  |  |  |         ns_diff > INT64_MAX) { | 
					
						
							|  |  |  |         next = INT64_MAX; | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * as it is very unlikely qemu_clock_get_ns will return a value | 
					
						
							|  |  |  |          * greater than INT64_MAX, no additional check is needed for an | 
					
						
							|  |  |  |          * unsigned integer overflow. | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  |         next = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) + ns_diff; | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * if ns_diff is INT64_MAX next may still be outside the range | 
					
						
							|  |  |  |          * of a signed integer. | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  |         next = MIN(next, INT64_MAX); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-24 15:13:55 -07:00
										 |  |  |     timer_mod(mtimer->timers[hartid], next); | 
					
						
							| 
									
										
										
										
											2018-03-03 01:31:12 +13:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Callback used when the timer set using timer_mod expires. | 
					
						
							|  |  |  |  * Should raise the timer interrupt line | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2021-08-31 16:36:01 +05:30
										 |  |  | static void riscv_aclint_mtimer_cb(void *opaque) | 
					
						
							| 
									
										
										
										
											2018-03-03 01:31:12 +13:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-08-31 16:36:01 +05:30
										 |  |  |     riscv_aclint_mtimer_callback *state = opaque; | 
					
						
							| 
									
										
										
										
											2021-08-30 15:34:36 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  |     qemu_irq_raise(state->s->timer_irqs[state->num]); | 
					
						
							| 
									
										
										
										
											2018-03-03 01:31:12 +13:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-31 16:36:01 +05:30
										 |  |  | /* CPU read MTIMER register */ | 
					
						
							|  |  |  | static uint64_t riscv_aclint_mtimer_read(void *opaque, hwaddr addr, | 
					
						
							|  |  |  |     unsigned size) | 
					
						
							| 
									
										
										
										
											2018-03-03 01:31:12 +13:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-08-31 16:36:01 +05:30
										 |  |  |     RISCVAclintMTimerState *mtimer = opaque; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (addr >= mtimer->timecmp_base && | 
					
						
							|  |  |  |         addr < (mtimer->timecmp_base + (mtimer->num_harts << 3))) { | 
					
						
							|  |  |  |         size_t hartid = mtimer->hartid_base + | 
					
						
							|  |  |  |                         ((addr - mtimer->timecmp_base) >> 3); | 
					
						
							| 
									
										
										
										
											2023-03-03 12:20:55 +05:30
										 |  |  |         CPUState *cpu = cpu_by_arch_id(hartid); | 
					
						
							| 
									
										
										
										
											2023-09-13 17:22:49 -07:00
										 |  |  |         CPURISCVState *env = cpu ? cpu_env(cpu) : NULL; | 
					
						
							| 
									
										
										
										
											2018-03-03 01:31:12 +13:00
										 |  |  |         if (!env) { | 
					
						
							| 
									
										
										
										
											2021-08-31 16:36:01 +05:30
										 |  |  |             qemu_log_mask(LOG_GUEST_ERROR, | 
					
						
							|  |  |  |                           "aclint-mtimer: invalid hartid: %zu", hartid); | 
					
						
							| 
									
										
										
										
											2018-03-03 01:31:12 +13:00
										 |  |  |         } else if ((addr & 0x7) == 0) { | 
					
						
							| 
									
										
										
										
											2022-04-20 16:08:58 +08:00
										 |  |  |             /* timecmp_lo for RV32/RV64 or timecmp for RV64 */ | 
					
						
							| 
									
										
										
										
											2022-08-24 15:13:55 -07:00
										 |  |  |             uint64_t timecmp = mtimer->timecmp[hartid]; | 
					
						
							| 
									
										
										
										
											2022-04-20 16:08:58 +08:00
										 |  |  |             return (size == 4) ? (timecmp & 0xFFFFFFFF) : timecmp; | 
					
						
							| 
									
										
										
										
											2018-03-03 01:31:12 +13:00
										 |  |  |         } else if ((addr & 0x7) == 4) { | 
					
						
							|  |  |  |             /* timecmp_hi */ | 
					
						
							| 
									
										
										
										
											2022-08-24 15:13:55 -07:00
										 |  |  |             uint64_t timecmp = mtimer->timecmp[hartid]; | 
					
						
							| 
									
										
										
										
											2018-03-03 01:31:12 +13:00
										 |  |  |             return (timecmp >> 32) & 0xFFFFFFFF; | 
					
						
							|  |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2021-08-31 16:36:01 +05:30
										 |  |  |             qemu_log_mask(LOG_UNIMP, | 
					
						
							|  |  |  |                           "aclint-mtimer: invalid read: %08x", (uint32_t)addr); | 
					
						
							| 
									
										
										
										
											2018-03-03 01:31:12 +13:00
										 |  |  |             return 0; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-08-31 16:36:01 +05:30
										 |  |  |     } else if (addr == mtimer->time_base) { | 
					
						
							| 
									
										
										
										
											2022-04-20 16:08:58 +08:00
										 |  |  |         /* time_lo for RV32/RV64 or timecmp for RV64 */ | 
					
						
							| 
									
										
										
										
											2022-04-20 16:08:59 +08:00
										 |  |  |         uint64_t rtc = cpu_riscv_read_rtc(mtimer); | 
					
						
							| 
									
										
										
										
											2022-04-20 16:08:58 +08:00
										 |  |  |         return (size == 4) ? (rtc & 0xFFFFFFFF) : rtc; | 
					
						
							| 
									
										
										
										
											2021-08-31 16:36:01 +05:30
										 |  |  |     } else if (addr == mtimer->time_base + 4) { | 
					
						
							| 
									
										
										
										
											2018-03-03 01:31:12 +13:00
										 |  |  |         /* time_hi */ | 
					
						
							| 
									
										
										
										
											2022-04-20 16:08:59 +08:00
										 |  |  |         return (cpu_riscv_read_rtc(mtimer) >> 32) & 0xFFFFFFFF; | 
					
						
							| 
									
										
										
										
											2018-03-03 01:31:12 +13:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-31 16:36:01 +05:30
										 |  |  |     qemu_log_mask(LOG_UNIMP, | 
					
						
							|  |  |  |                   "aclint-mtimer: invalid read: %08x", (uint32_t)addr); | 
					
						
							| 
									
										
										
										
											2018-03-03 01:31:12 +13:00
										 |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-31 16:36:01 +05:30
										 |  |  | /* CPU write MTIMER register */ | 
					
						
							|  |  |  | static void riscv_aclint_mtimer_write(void *opaque, hwaddr addr, | 
					
						
							|  |  |  |     uint64_t value, unsigned size) | 
					
						
							| 
									
										
										
										
											2018-03-03 01:31:12 +13:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-08-31 16:36:01 +05:30
										 |  |  |     RISCVAclintMTimerState *mtimer = opaque; | 
					
						
							| 
									
										
										
										
											2022-04-20 16:08:59 +08:00
										 |  |  |     int i; | 
					
						
							| 
									
										
										
										
											2018-03-03 01:31:12 +13:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-31 16:36:01 +05:30
										 |  |  |     if (addr >= mtimer->timecmp_base && | 
					
						
							|  |  |  |         addr < (mtimer->timecmp_base + (mtimer->num_harts << 3))) { | 
					
						
							|  |  |  |         size_t hartid = mtimer->hartid_base + | 
					
						
							|  |  |  |                         ((addr - mtimer->timecmp_base) >> 3); | 
					
						
							| 
									
										
										
										
											2023-03-03 12:20:55 +05:30
										 |  |  |         CPUState *cpu = cpu_by_arch_id(hartid); | 
					
						
							| 
									
										
										
										
											2023-09-13 17:22:49 -07:00
										 |  |  |         CPURISCVState *env = cpu ? cpu_env(cpu) : NULL; | 
					
						
							| 
									
										
										
										
											2018-03-03 01:31:12 +13:00
										 |  |  |         if (!env) { | 
					
						
							| 
									
										
										
										
											2021-08-31 16:36:01 +05:30
										 |  |  |             qemu_log_mask(LOG_GUEST_ERROR, | 
					
						
							|  |  |  |                           "aclint-mtimer: invalid hartid: %zu", hartid); | 
					
						
							| 
									
										
										
										
											2018-03-03 01:31:12 +13:00
										 |  |  |         } else if ((addr & 0x7) == 0) { | 
					
						
							| 
									
										
										
										
											2022-04-20 16:08:58 +08:00
										 |  |  |             if (size == 4) { | 
					
						
							|  |  |  |                 /* timecmp_lo for RV32/RV64 */ | 
					
						
							| 
									
										
										
										
											2022-08-24 15:13:55 -07:00
										 |  |  |                 uint64_t timecmp_hi = mtimer->timecmp[hartid] >> 32; | 
					
						
							| 
									
										
										
										
											2022-04-20 16:08:58 +08:00
										 |  |  |                 riscv_aclint_mtimer_write_timecmp(mtimer, RISCV_CPU(cpu), hartid, | 
					
						
							| 
									
										
										
										
											2022-04-20 16:08:59 +08:00
										 |  |  |                     timecmp_hi << 32 | (value & 0xFFFFFFFF)); | 
					
						
							| 
									
										
										
										
											2022-04-20 16:08:58 +08:00
										 |  |  |             } else { | 
					
						
							|  |  |  |                 /* timecmp for RV64 */ | 
					
						
							|  |  |  |                 riscv_aclint_mtimer_write_timecmp(mtimer, RISCV_CPU(cpu), hartid, | 
					
						
							| 
									
										
										
										
											2022-04-20 16:08:59 +08:00
										 |  |  |                                                   value); | 
					
						
							| 
									
										
										
										
											2022-04-20 16:08:58 +08:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2018-03-03 01:31:12 +13:00
										 |  |  |         } else if ((addr & 0x7) == 4) { | 
					
						
							| 
									
										
										
										
											2022-04-20 16:08:58 +08:00
										 |  |  |             if (size == 4) { | 
					
						
							|  |  |  |                 /* timecmp_hi for RV32/RV64 */ | 
					
						
							| 
									
										
										
										
											2022-08-24 15:13:55 -07:00
										 |  |  |                 uint64_t timecmp_lo = mtimer->timecmp[hartid]; | 
					
						
							| 
									
										
										
										
											2022-04-20 16:08:58 +08:00
										 |  |  |                 riscv_aclint_mtimer_write_timecmp(mtimer, RISCV_CPU(cpu), hartid, | 
					
						
							| 
									
										
										
										
											2022-04-20 16:08:59 +08:00
										 |  |  |                     value << 32 | (timecmp_lo & 0xFFFFFFFF)); | 
					
						
							| 
									
										
										
										
											2022-04-20 16:08:58 +08:00
										 |  |  |             } else { | 
					
						
							|  |  |  |                 qemu_log_mask(LOG_GUEST_ERROR, | 
					
						
							|  |  |  |                               "aclint-mtimer: invalid timecmp_hi write: %08x", | 
					
						
							|  |  |  |                               (uint32_t)addr); | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2018-03-03 01:31:12 +13:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2021-08-31 16:36:01 +05:30
										 |  |  |             qemu_log_mask(LOG_UNIMP, | 
					
						
							|  |  |  |                           "aclint-mtimer: invalid timecmp write: %08x", | 
					
						
							|  |  |  |                           (uint32_t)addr); | 
					
						
							| 
									
										
										
										
											2018-03-03 01:31:12 +13:00
										 |  |  |         } | 
					
						
							|  |  |  |         return; | 
					
						
							| 
									
										
										
										
											2022-04-20 16:08:59 +08:00
										 |  |  |     } else if (addr == mtimer->time_base || addr == mtimer->time_base + 4) { | 
					
						
							|  |  |  |         uint64_t rtc_r = cpu_riscv_read_rtc_raw(mtimer->timebase_freq); | 
					
						
							| 
									
										
										
										
											2023-07-28 08:24:38 +00:00
										 |  |  |         uint64_t rtc = cpu_riscv_read_rtc(mtimer); | 
					
						
							| 
									
										
										
										
											2022-04-20 16:08:59 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (addr == mtimer->time_base) { | 
					
						
							|  |  |  |             if (size == 4) { | 
					
						
							|  |  |  |                 /* time_lo for RV32/RV64 */ | 
					
						
							| 
									
										
										
										
											2023-07-28 08:24:38 +00:00
										 |  |  |                 mtimer->time_delta = ((rtc & ~0xFFFFFFFFULL) | value) - rtc_r; | 
					
						
							| 
									
										
										
										
											2022-04-20 16:08:59 +08:00
										 |  |  |             } else { | 
					
						
							|  |  |  |                 /* time for RV64 */ | 
					
						
							|  |  |  |                 mtimer->time_delta = value - rtc_r; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             if (size == 4) { | 
					
						
							|  |  |  |                 /* time_hi for RV32/RV64 */ | 
					
						
							| 
									
										
										
										
											2023-07-28 08:24:38 +00:00
										 |  |  |                 mtimer->time_delta = (value << 32 | (rtc & 0xFFFFFFFF)) - rtc_r; | 
					
						
							| 
									
										
										
										
											2022-04-20 16:08:59 +08:00
										 |  |  |             } else { | 
					
						
							|  |  |  |                 qemu_log_mask(LOG_GUEST_ERROR, | 
					
						
							|  |  |  |                               "aclint-mtimer: invalid time_hi write: %08x", | 
					
						
							|  |  |  |                               (uint32_t)addr); | 
					
						
							|  |  |  |                 return; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* Check if timer interrupt is triggered for each hart. */ | 
					
						
							|  |  |  |         for (i = 0; i < mtimer->num_harts; i++) { | 
					
						
							| 
									
										
										
										
											2023-03-03 12:20:55 +05:30
										 |  |  |             CPUState *cpu = cpu_by_arch_id(mtimer->hartid_base + i); | 
					
						
							| 
									
										
										
										
											2023-09-13 17:22:49 -07:00
										 |  |  |             CPURISCVState *env = cpu ? cpu_env(cpu) : NULL; | 
					
						
							| 
									
										
										
										
											2022-04-20 16:08:59 +08:00
										 |  |  |             if (!env) { | 
					
						
							|  |  |  |                 continue; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             riscv_aclint_mtimer_write_timecmp(mtimer, RISCV_CPU(cpu), | 
					
						
							| 
									
										
										
										
											2022-05-13 15:14:58 -07:00
										 |  |  |                                               mtimer->hartid_base + i, | 
					
						
							| 
									
										
										
										
											2022-08-24 15:13:55 -07:00
										 |  |  |                                               mtimer->timecmp[i]); | 
					
						
							| 
									
										
										
										
											2022-04-20 16:08:59 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-03-03 01:31:12 +13:00
										 |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-31 16:36:01 +05:30
										 |  |  |     qemu_log_mask(LOG_UNIMP, | 
					
						
							|  |  |  |                   "aclint-mtimer: invalid write: %08x", (uint32_t)addr); | 
					
						
							| 
									
										
										
										
											2018-03-03 01:31:12 +13:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-31 16:36:01 +05:30
										 |  |  | static const MemoryRegionOps riscv_aclint_mtimer_ops = { | 
					
						
							|  |  |  |     .read = riscv_aclint_mtimer_read, | 
					
						
							|  |  |  |     .write = riscv_aclint_mtimer_write, | 
					
						
							| 
									
										
										
										
											2018-03-03 01:31:12 +13:00
										 |  |  |     .endianness = DEVICE_LITTLE_ENDIAN, | 
					
						
							|  |  |  |     .valid = { | 
					
						
							|  |  |  |         .min_access_size = 4, | 
					
						
							| 
									
										
										
										
											2020-06-30 13:12:11 -07:00
										 |  |  |         .max_access_size = 8 | 
					
						
							| 
									
										
										
										
											2022-04-20 16:08:57 +08:00
										 |  |  |     }, | 
					
						
							|  |  |  |     .impl = { | 
					
						
							|  |  |  |         .min_access_size = 4, | 
					
						
							|  |  |  |         .max_access_size = 8, | 
					
						
							| 
									
										
										
										
											2018-03-03 01:31:12 +13:00
										 |  |  |     } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-31 16:36:01 +05:30
										 |  |  | static Property riscv_aclint_mtimer_properties[] = { | 
					
						
							|  |  |  |     DEFINE_PROP_UINT32("hartid-base", RISCVAclintMTimerState, | 
					
						
							|  |  |  |         hartid_base, 0), | 
					
						
							|  |  |  |     DEFINE_PROP_UINT32("num-harts", RISCVAclintMTimerState, num_harts, 1), | 
					
						
							|  |  |  |     DEFINE_PROP_UINT32("timecmp-base", RISCVAclintMTimerState, | 
					
						
							|  |  |  |         timecmp_base, RISCV_ACLINT_DEFAULT_MTIMECMP), | 
					
						
							|  |  |  |     DEFINE_PROP_UINT32("time-base", RISCVAclintMTimerState, | 
					
						
							|  |  |  |         time_base, RISCV_ACLINT_DEFAULT_MTIME), | 
					
						
							|  |  |  |     DEFINE_PROP_UINT32("aperture-size", RISCVAclintMTimerState, | 
					
						
							|  |  |  |         aperture_size, RISCV_ACLINT_DEFAULT_MTIMER_SIZE), | 
					
						
							|  |  |  |     DEFINE_PROP_UINT32("timebase-freq", RISCVAclintMTimerState, | 
					
						
							|  |  |  |         timebase_freq, 0), | 
					
						
							| 
									
										
										
										
											2018-03-03 01:31:12 +13:00
										 |  |  |     DEFINE_PROP_END_OF_LIST(), | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-31 16:36:01 +05:30
										 |  |  | static void riscv_aclint_mtimer_realize(DeviceState *dev, Error **errp) | 
					
						
							| 
									
										
										
										
											2018-03-03 01:31:12 +13:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-08-31 16:36:01 +05:30
										 |  |  |     RISCVAclintMTimerState *s = RISCV_ACLINT_MTIMER(dev); | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     memory_region_init_io(&s->mmio, OBJECT(dev), &riscv_aclint_mtimer_ops, | 
					
						
							|  |  |  |                           s, TYPE_RISCV_ACLINT_MTIMER, s->aperture_size); | 
					
						
							| 
									
										
										
										
											2018-03-03 01:31:12 +13:00
										 |  |  |     sysbus_init_mmio(SYS_BUS_DEVICE(dev), &s->mmio); | 
					
						
							| 
									
										
										
										
											2021-08-30 15:34:36 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-15 15:41:56 +01:00
										 |  |  |     s->timer_irqs = g_new(qemu_irq, s->num_harts); | 
					
						
							| 
									
										
										
										
											2021-08-30 15:34:36 +10:00
										 |  |  |     qdev_init_gpio_out(dev, s->timer_irqs, s->num_harts); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-24 15:13:55 -07:00
										 |  |  |     s->timers = g_new0(QEMUTimer *, s->num_harts); | 
					
						
							|  |  |  |     s->timecmp = g_new0(uint64_t, s->num_harts); | 
					
						
							| 
									
										
										
										
											2021-08-31 16:36:01 +05:30
										 |  |  |     /* Claim timer interrupt bits */ | 
					
						
							|  |  |  |     for (i = 0; i < s->num_harts; i++) { | 
					
						
							| 
									
										
										
										
											2023-03-03 12:20:55 +05:30
										 |  |  |         RISCVCPU *cpu = RISCV_CPU(cpu_by_arch_id(s->hartid_base + i)); | 
					
						
							| 
									
										
										
										
											2021-08-31 16:36:01 +05:30
										 |  |  |         if (riscv_cpu_claim_interrupts(cpu, MIP_MTIP) < 0) { | 
					
						
							|  |  |  |             error_report("MTIP already claimed"); | 
					
						
							|  |  |  |             exit(1); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-03-03 01:31:12 +13:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-20 16:09:00 +08:00
										 |  |  | static void riscv_aclint_mtimer_reset_enter(Object *obj, ResetType type) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * According to RISC-V ACLINT spec: | 
					
						
							|  |  |  |      *   - On MTIMER device reset, the MTIME register is cleared to zero. | 
					
						
							|  |  |  |      *   - On MTIMER device reset, the MTIMECMP registers are in unknown state. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     RISCVAclintMTimerState *mtimer = RISCV_ACLINT_MTIMER(obj); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Clear mtime register by writing to 0 it. | 
					
						
							|  |  |  |      * Pending mtime interrupts will also be cleared at the same time. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     riscv_aclint_mtimer_write(mtimer, mtimer->time_base, 0, 8); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-24 15:13:55 -07:00
										 |  |  | static const VMStateDescription vmstate_riscv_mtimer = { | 
					
						
							|  |  |  |     .name = "riscv_mtimer", | 
					
						
							|  |  |  |     .version_id = 1, | 
					
						
							|  |  |  |     .minimum_version_id = 1, | 
					
						
							| 
									
										
										
										
											2023-12-21 14:16:15 +11:00
										 |  |  |     .fields = (const VMStateField[]) { | 
					
						
							| 
									
										
										
										
											2022-08-24 15:13:55 -07:00
										 |  |  |             VMSTATE_VARRAY_UINT32(timecmp, RISCVAclintMTimerState, | 
					
						
							|  |  |  |                                   num_harts, 0, | 
					
						
							|  |  |  |                                   vmstate_info_uint64, uint64_t), | 
					
						
							|  |  |  |             VMSTATE_END_OF_LIST() | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-31 16:36:01 +05:30
										 |  |  | static void riscv_aclint_mtimer_class_init(ObjectClass *klass, void *data) | 
					
						
							| 
									
										
										
										
											2018-03-03 01:31:12 +13:00
										 |  |  | { | 
					
						
							|  |  |  |     DeviceClass *dc = DEVICE_CLASS(klass); | 
					
						
							| 
									
										
										
										
											2021-08-31 16:36:01 +05:30
										 |  |  |     dc->realize = riscv_aclint_mtimer_realize; | 
					
						
							|  |  |  |     device_class_set_props(dc, riscv_aclint_mtimer_properties); | 
					
						
							| 
									
										
										
										
											2022-04-20 16:09:00 +08:00
										 |  |  |     ResettableClass *rc = RESETTABLE_CLASS(klass); | 
					
						
							|  |  |  |     rc->phases.enter = riscv_aclint_mtimer_reset_enter; | 
					
						
							| 
									
										
										
										
											2022-08-24 15:13:55 -07:00
										 |  |  |     dc->vmsd = &vmstate_riscv_mtimer; | 
					
						
							| 
									
										
										
										
											2018-03-03 01:31:12 +13:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-31 16:36:01 +05:30
										 |  |  | static const TypeInfo riscv_aclint_mtimer_info = { | 
					
						
							|  |  |  |     .name          = TYPE_RISCV_ACLINT_MTIMER, | 
					
						
							| 
									
										
										
										
											2018-03-03 01:31:12 +13:00
										 |  |  |     .parent        = TYPE_SYS_BUS_DEVICE, | 
					
						
							| 
									
										
										
										
											2021-08-31 16:36:01 +05:30
										 |  |  |     .instance_size = sizeof(RISCVAclintMTimerState), | 
					
						
							|  |  |  |     .class_init    = riscv_aclint_mtimer_class_init, | 
					
						
							| 
									
										
										
										
											2018-03-03 01:31:12 +13:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2021-08-31 16:36:01 +05:30
										 |  |  |  * Create ACLINT MTIMER device. | 
					
						
							| 
									
										
										
										
											2018-03-03 01:31:12 +13:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2021-08-31 16:36:01 +05:30
										 |  |  | DeviceState *riscv_aclint_mtimer_create(hwaddr addr, hwaddr size, | 
					
						
							|  |  |  |     uint32_t hartid_base, uint32_t num_harts, | 
					
						
							| 
									
										
										
										
											2020-09-01 09:39:10 +08:00
										 |  |  |     uint32_t timecmp_base, uint32_t time_base, uint32_t timebase_freq, | 
					
						
							|  |  |  |     bool provide_rdtime) | 
					
						
							| 
									
										
										
										
											2018-03-03 01:31:12 +13:00
										 |  |  | { | 
					
						
							|  |  |  |     int i; | 
					
						
							| 
									
										
										
										
											2021-08-31 16:36:01 +05:30
										 |  |  |     DeviceState *dev = qdev_new(TYPE_RISCV_ACLINT_MTIMER); | 
					
						
							| 
									
										
										
										
											2022-08-24 15:13:55 -07:00
										 |  |  |     RISCVAclintMTimerState *s = RISCV_ACLINT_MTIMER(dev); | 
					
						
							| 
									
										
										
										
											2021-08-31 16:36:01 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  |     assert(num_harts <= RISCV_ACLINT_MAX_HARTS); | 
					
						
							|  |  |  |     assert(!(addr & 0x7)); | 
					
						
							|  |  |  |     assert(!(timecmp_base & 0x7)); | 
					
						
							|  |  |  |     assert(!(time_base & 0x7)); | 
					
						
							| 
									
										
										
										
											2021-08-30 15:34:36 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  |     qdev_prop_set_uint32(dev, "hartid-base", hartid_base); | 
					
						
							|  |  |  |     qdev_prop_set_uint32(dev, "num-harts", num_harts); | 
					
						
							|  |  |  |     qdev_prop_set_uint32(dev, "timecmp-base", timecmp_base); | 
					
						
							|  |  |  |     qdev_prop_set_uint32(dev, "time-base", time_base); | 
					
						
							|  |  |  |     qdev_prop_set_uint32(dev, "aperture-size", size); | 
					
						
							|  |  |  |     qdev_prop_set_uint32(dev, "timebase-freq", timebase_freq); | 
					
						
							|  |  |  |     sysbus_realize_and_unref(SYS_BUS_DEVICE(dev), &error_fatal); | 
					
						
							|  |  |  |     sysbus_mmio_map(SYS_BUS_DEVICE(dev), 0, addr); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-03 01:31:12 +13:00
										 |  |  |     for (i = 0; i < num_harts; i++) { | 
					
						
							| 
									
										
										
										
											2023-03-03 12:20:55 +05:30
										 |  |  |         CPUState *cpu = cpu_by_arch_id(hartid_base + i); | 
					
						
							| 
									
										
										
										
											2021-08-30 15:34:36 +10:00
										 |  |  |         RISCVCPU *rvcpu = RISCV_CPU(cpu); | 
					
						
							| 
									
										
										
										
											2023-09-13 17:22:49 -07:00
										 |  |  |         CPURISCVState *env = cpu ? cpu_env(cpu) : NULL; | 
					
						
							| 
									
										
										
										
											2021-08-31 16:36:01 +05:30
										 |  |  |         riscv_aclint_mtimer_callback *cb = | 
					
						
							| 
									
										
										
										
											2022-03-15 15:41:56 +01:00
										 |  |  |             g_new0(riscv_aclint_mtimer_callback, 1); | 
					
						
							| 
									
										
										
										
											2021-08-30 15:34:36 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-03 01:31:12 +13:00
										 |  |  |         if (!env) { | 
					
						
							| 
									
										
										
										
											2021-08-30 15:34:36 +10:00
										 |  |  |             g_free(cb); | 
					
						
							| 
									
										
										
										
											2018-03-03 01:31:12 +13:00
										 |  |  |             continue; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2020-02-02 19:12:17 +05:30
										 |  |  |         if (provide_rdtime) { | 
					
						
							| 
									
										
										
										
											2022-04-20 16:08:59 +08:00
										 |  |  |             riscv_cpu_set_rdtime_fn(env, cpu_riscv_read_rtc, dev); | 
					
						
							| 
									
										
										
										
											2020-02-02 19:12:17 +05:30
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-08-30 15:34:36 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-24 15:13:55 -07:00
										 |  |  |         cb->s = s; | 
					
						
							| 
									
										
										
										
											2021-08-30 15:34:36 +10:00
										 |  |  |         cb->num = i; | 
					
						
							| 
									
										
										
										
											2022-08-24 15:13:55 -07:00
										 |  |  |         s->timers[i] = timer_new_ns(QEMU_CLOCK_VIRTUAL, | 
					
						
							| 
									
										
										
										
											2021-08-31 16:36:01 +05:30
										 |  |  |                                   &riscv_aclint_mtimer_cb, cb); | 
					
						
							| 
									
										
										
										
											2022-08-24 15:13:55 -07:00
										 |  |  |         s->timecmp[i] = 0; | 
					
						
							| 
									
										
										
										
											2021-08-30 15:34:36 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  |         qdev_connect_gpio_out(dev, i, | 
					
						
							|  |  |  |                               qdev_get_gpio_in(DEVICE(rvcpu), IRQ_M_TIMER)); | 
					
						
							| 
									
										
										
										
											2018-03-03 01:31:12 +13:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return dev; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2021-08-31 16:36:01 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | /* CPU read [M|S]SWI register */ | 
					
						
							|  |  |  | static uint64_t riscv_aclint_swi_read(void *opaque, hwaddr addr, | 
					
						
							|  |  |  |     unsigned size) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     RISCVAclintSwiState *swi = opaque; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (addr < (swi->num_harts << 2)) { | 
					
						
							|  |  |  |         size_t hartid = swi->hartid_base + (addr >> 2); | 
					
						
							| 
									
										
										
										
											2023-03-03 12:20:55 +05:30
										 |  |  |         CPUState *cpu = cpu_by_arch_id(hartid); | 
					
						
							| 
									
										
										
										
											2023-09-13 17:22:49 -07:00
										 |  |  |         CPURISCVState *env = cpu ? cpu_env(cpu) : NULL; | 
					
						
							| 
									
										
										
										
											2021-08-31 16:36:01 +05:30
										 |  |  |         if (!env) { | 
					
						
							|  |  |  |             qemu_log_mask(LOG_GUEST_ERROR, | 
					
						
							|  |  |  |                           "aclint-swi: invalid hartid: %zu", hartid); | 
					
						
							|  |  |  |         } else if ((addr & 0x3) == 0) { | 
					
						
							|  |  |  |             return (swi->sswi) ? 0 : ((env->mip & MIP_MSIP) > 0); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     qemu_log_mask(LOG_UNIMP, | 
					
						
							|  |  |  |                   "aclint-swi: invalid read: %08x", (uint32_t)addr); | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* CPU write [M|S]SWI register */ | 
					
						
							|  |  |  | static void riscv_aclint_swi_write(void *opaque, hwaddr addr, uint64_t value, | 
					
						
							|  |  |  |         unsigned size) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     RISCVAclintSwiState *swi = opaque; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (addr < (swi->num_harts << 2)) { | 
					
						
							|  |  |  |         size_t hartid = swi->hartid_base + (addr >> 2); | 
					
						
							| 
									
										
										
										
											2023-03-03 12:20:55 +05:30
										 |  |  |         CPUState *cpu = cpu_by_arch_id(hartid); | 
					
						
							| 
									
										
										
										
											2023-09-13 17:22:49 -07:00
										 |  |  |         CPURISCVState *env = cpu ? cpu_env(cpu) : NULL; | 
					
						
							| 
									
										
										
										
											2021-08-31 16:36:01 +05:30
										 |  |  |         if (!env) { | 
					
						
							|  |  |  |             qemu_log_mask(LOG_GUEST_ERROR, | 
					
						
							|  |  |  |                           "aclint-swi: invalid hartid: %zu", hartid); | 
					
						
							|  |  |  |         } else if ((addr & 0x3) == 0) { | 
					
						
							|  |  |  |             if (value & 0x1) { | 
					
						
							|  |  |  |                 qemu_irq_raise(swi->soft_irqs[hartid - swi->hartid_base]); | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 if (!swi->sswi) { | 
					
						
							|  |  |  |                     qemu_irq_lower(swi->soft_irqs[hartid - swi->hartid_base]); | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             return; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     qemu_log_mask(LOG_UNIMP, | 
					
						
							|  |  |  |                   "aclint-swi: invalid write: %08x", (uint32_t)addr); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const MemoryRegionOps riscv_aclint_swi_ops = { | 
					
						
							|  |  |  |     .read = riscv_aclint_swi_read, | 
					
						
							|  |  |  |     .write = riscv_aclint_swi_write, | 
					
						
							|  |  |  |     .endianness = DEVICE_LITTLE_ENDIAN, | 
					
						
							|  |  |  |     .valid = { | 
					
						
							|  |  |  |         .min_access_size = 4, | 
					
						
							|  |  |  |         .max_access_size = 4 | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static Property riscv_aclint_swi_properties[] = { | 
					
						
							|  |  |  |     DEFINE_PROP_UINT32("hartid-base", RISCVAclintSwiState, hartid_base, 0), | 
					
						
							|  |  |  |     DEFINE_PROP_UINT32("num-harts", RISCVAclintSwiState, num_harts, 1), | 
					
						
							|  |  |  |     DEFINE_PROP_UINT32("sswi", RISCVAclintSwiState, sswi, false), | 
					
						
							|  |  |  |     DEFINE_PROP_END_OF_LIST(), | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void riscv_aclint_swi_realize(DeviceState *dev, Error **errp) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     RISCVAclintSwiState *swi = RISCV_ACLINT_SWI(dev); | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     memory_region_init_io(&swi->mmio, OBJECT(dev), &riscv_aclint_swi_ops, swi, | 
					
						
							|  |  |  |                           TYPE_RISCV_ACLINT_SWI, RISCV_ACLINT_SWI_SIZE); | 
					
						
							|  |  |  |     sysbus_init_mmio(SYS_BUS_DEVICE(dev), &swi->mmio); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-15 15:41:56 +01:00
										 |  |  |     swi->soft_irqs = g_new(qemu_irq, swi->num_harts); | 
					
						
							| 
									
										
										
										
											2021-08-31 16:36:01 +05:30
										 |  |  |     qdev_init_gpio_out(dev, swi->soft_irqs, swi->num_harts); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Claim software interrupt bits */ | 
					
						
							|  |  |  |     for (i = 0; i < swi->num_harts; i++) { | 
					
						
							|  |  |  |         RISCVCPU *cpu = RISCV_CPU(qemu_get_cpu(swi->hartid_base + i)); | 
					
						
							| 
									
										
										
										
											2022-06-08 19:38:47 +01:00
										 |  |  |         /* We don't claim mip.SSIP because it is writable by software */ | 
					
						
							| 
									
										
										
										
											2021-08-31 16:36:01 +05:30
										 |  |  |         if (riscv_cpu_claim_interrupts(cpu, swi->sswi ? 0 : MIP_MSIP) < 0) { | 
					
						
							|  |  |  |             error_report("MSIP already claimed"); | 
					
						
							|  |  |  |             exit(1); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-20 16:09:00 +08:00
										 |  |  | static void riscv_aclint_swi_reset_enter(Object *obj, ResetType type) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * According to RISC-V ACLINT spec: | 
					
						
							|  |  |  |      *   - On MSWI device reset, each MSIP register is cleared to zero. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * p.s. SSWI device reset does nothing since SETSIP register always reads 0. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     RISCVAclintSwiState *swi = RISCV_ACLINT_SWI(obj); | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!swi->sswi) { | 
					
						
							|  |  |  |         for (i = 0; i < swi->num_harts; i++) { | 
					
						
							|  |  |  |             /* Clear MSIP registers by lowering software interrupts. */ | 
					
						
							|  |  |  |             qemu_irq_lower(swi->soft_irqs[i]); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-31 16:36:01 +05:30
										 |  |  | static void riscv_aclint_swi_class_init(ObjectClass *klass, void *data) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     DeviceClass *dc = DEVICE_CLASS(klass); | 
					
						
							|  |  |  |     dc->realize = riscv_aclint_swi_realize; | 
					
						
							|  |  |  |     device_class_set_props(dc, riscv_aclint_swi_properties); | 
					
						
							| 
									
										
										
										
											2022-04-20 16:09:00 +08:00
										 |  |  |     ResettableClass *rc = RESETTABLE_CLASS(klass); | 
					
						
							|  |  |  |     rc->phases.enter = riscv_aclint_swi_reset_enter; | 
					
						
							| 
									
										
										
										
											2021-08-31 16:36:01 +05:30
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const TypeInfo riscv_aclint_swi_info = { | 
					
						
							|  |  |  |     .name          = TYPE_RISCV_ACLINT_SWI, | 
					
						
							|  |  |  |     .parent        = TYPE_SYS_BUS_DEVICE, | 
					
						
							|  |  |  |     .instance_size = sizeof(RISCVAclintSwiState), | 
					
						
							|  |  |  |     .class_init    = riscv_aclint_swi_class_init, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Create ACLINT [M|S]SWI device. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | DeviceState *riscv_aclint_swi_create(hwaddr addr, uint32_t hartid_base, | 
					
						
							|  |  |  |     uint32_t num_harts, bool sswi) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  |     DeviceState *dev = qdev_new(TYPE_RISCV_ACLINT_SWI); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert(num_harts <= RISCV_ACLINT_MAX_HARTS); | 
					
						
							|  |  |  |     assert(!(addr & 0x3)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     qdev_prop_set_uint32(dev, "hartid-base", hartid_base); | 
					
						
							|  |  |  |     qdev_prop_set_uint32(dev, "num-harts", num_harts); | 
					
						
							|  |  |  |     qdev_prop_set_uint32(dev, "sswi", sswi ? true : false); | 
					
						
							|  |  |  |     sysbus_realize_and_unref(SYS_BUS_DEVICE(dev), &error_fatal); | 
					
						
							|  |  |  |     sysbus_mmio_map(SYS_BUS_DEVICE(dev), 0, addr); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (i = 0; i < num_harts; i++) { | 
					
						
							| 
									
										
										
										
											2023-03-03 12:20:55 +05:30
										 |  |  |         CPUState *cpu = cpu_by_arch_id(hartid_base + i); | 
					
						
							| 
									
										
										
										
											2021-08-31 16:36:01 +05:30
										 |  |  |         RISCVCPU *rvcpu = RISCV_CPU(cpu); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         qdev_connect_gpio_out(dev, i, | 
					
						
							|  |  |  |                               qdev_get_gpio_in(DEVICE(rvcpu), | 
					
						
							|  |  |  |                                   (sswi) ? IRQ_S_SOFT : IRQ_M_SOFT)); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return dev; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void riscv_aclint_register_types(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     type_register_static(&riscv_aclint_mtimer_info); | 
					
						
							|  |  |  |     type_register_static(&riscv_aclint_swi_info); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type_init(riscv_aclint_register_types) |