2017-09-20 22:17:33 +02:00
|
|
|
/*
|
|
|
|
* Block model of System timer present in
|
|
|
|
* Microsemi's SmartFusion2 and SmartFusion SoCs.
|
|
|
|
*
|
|
|
|
* Copyright (c) 2017 Subbaraya Sundeep <sundeep.lkml@gmail.com>.
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "qemu/osdep.h"
|
2019-05-23 16:35:07 +02:00
|
|
|
#include "qemu/module.h"
|
2017-09-20 22:17:33 +02:00
|
|
|
#include "qemu/log.h"
|
2019-08-12 07:23:42 +02:00
|
|
|
#include "hw/irq.h"
|
2019-08-12 07:23:51 +02:00
|
|
|
#include "hw/qdev-properties.h"
|
2017-09-20 22:17:33 +02:00
|
|
|
#include "hw/timer/mss-timer.h"
|
2019-08-12 07:23:45 +02:00
|
|
|
#include "migration/vmstate.h"
|
2017-09-20 22:17:33 +02:00
|
|
|
|
|
|
|
#ifndef MSS_TIMER_ERR_DEBUG
|
|
|
|
#define MSS_TIMER_ERR_DEBUG 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define DB_PRINT_L(lvl, fmt, args...) do { \
|
|
|
|
if (MSS_TIMER_ERR_DEBUG >= lvl) { \
|
|
|
|
qemu_log("%s: " fmt "\n", __func__, ## args); \
|
|
|
|
} \
|
maint: Fix macros with broken 'do/while(0); ' usage
The point of writing a macro embedded in a 'do { ... } while (0)'
loop (particularly if the macro has multiple statements or would
otherwise end with an 'if' statement) is so that the macro can be
used as a drop-in statement with the caller supplying the
trailing ';'. Although our coding style frowns on brace-less 'if':
if (cond)
statement;
else
something else;
that is the classic case where failure to use do/while(0) wrapping
would cause the 'else' to pair with any embedded 'if' in the macro
rather than the intended outer 'if'. But conversely, if the macro
includes an embedded ';', then the same brace-less coding style
would now have two statements, making the 'else' a syntax error
rather than pairing with the outer 'if'. Thus, even though our
coding style with required braces is not impacted, ending a macro
with ';' makes our code harder to port to projects that use
brace-less styles.
The change should have no semantic impact. I was not able to
fully compile-test all of the changes (as some of them are
examples of the ugly bit-rotting debug print statements that are
completely elided by default, and I didn't want to recompile
with the necessary -D witnesses - cleaning those up is left as a
bite-sized task for another day); I did, however, audit that for
all files touched, all callers of the changed macros DID supply
a trailing ';' at the callsite, and did not appear to be used
as part of a brace-less conditional.
Found mechanically via: $ git grep -B1 'while (0);' | grep -A1 \\\\
Signed-off-by: Eric Blake <eblake@redhat.com>
Acked-by: Cornelia Huck <cohuck@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Acked-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Message-Id: <20171201232433.25193-7-eblake@redhat.com>
Reviewed-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
2017-12-02 00:24:32 +01:00
|
|
|
} while (0)
|
2017-09-20 22:17:33 +02:00
|
|
|
|
|
|
|
#define DB_PRINT(fmt, args...) DB_PRINT_L(1, fmt, ## args)
|
|
|
|
|
|
|
|
#define R_TIM_VAL 0
|
|
|
|
#define R_TIM_LOADVAL 1
|
|
|
|
#define R_TIM_BGLOADVAL 2
|
|
|
|
#define R_TIM_CTRL 3
|
|
|
|
#define R_TIM_RIS 4
|
|
|
|
#define R_TIM_MIS 5
|
|
|
|
|
|
|
|
#define TIMER_CTRL_ENBL (1 << 0)
|
|
|
|
#define TIMER_CTRL_ONESHOT (1 << 1)
|
|
|
|
#define TIMER_CTRL_INTR (1 << 2)
|
|
|
|
#define TIMER_RIS_ACK (1 << 0)
|
|
|
|
#define TIMER_RST_CLR (1 << 6)
|
|
|
|
#define TIMER_MODE (1 << 0)
|
|
|
|
|
|
|
|
static void timer_update_irq(struct Msf2Timer *st)
|
|
|
|
{
|
|
|
|
bool isr, ier;
|
|
|
|
|
|
|
|
isr = !!(st->regs[R_TIM_RIS] & TIMER_RIS_ACK);
|
|
|
|
ier = !!(st->regs[R_TIM_CTRL] & TIMER_CTRL_INTR);
|
|
|
|
qemu_set_irq(st->irq, (ier && isr));
|
|
|
|
}
|
|
|
|
|
2019-10-08 19:17:38 +02:00
|
|
|
/* Must be called from within a ptimer_transaction_begin/commit block */
|
2017-09-20 22:17:33 +02:00
|
|
|
static void timer_update(struct Msf2Timer *st)
|
|
|
|
{
|
|
|
|
uint64_t count;
|
|
|
|
|
|
|
|
if (!(st->regs[R_TIM_CTRL] & TIMER_CTRL_ENBL)) {
|
|
|
|
ptimer_stop(st->ptimer);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
count = st->regs[R_TIM_LOADVAL];
|
|
|
|
ptimer_set_limit(st->ptimer, count, 1);
|
|
|
|
ptimer_run(st->ptimer, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint64_t
|
|
|
|
timer_read(void *opaque, hwaddr offset, unsigned int size)
|
|
|
|
{
|
|
|
|
MSSTimerState *t = opaque;
|
|
|
|
hwaddr addr;
|
|
|
|
struct Msf2Timer *st;
|
|
|
|
uint32_t ret = 0;
|
|
|
|
int timer = 0;
|
|
|
|
int isr;
|
|
|
|
int ier;
|
|
|
|
|
|
|
|
addr = offset >> 2;
|
|
|
|
/*
|
|
|
|
* Two independent timers has same base address.
|
|
|
|
* Based on address passed figure out which timer is being used.
|
|
|
|
*/
|
|
|
|
if ((addr >= R_TIM1_MAX) && (addr < NUM_TIMERS * R_TIM1_MAX)) {
|
|
|
|
timer = 1;
|
|
|
|
addr -= R_TIM1_MAX;
|
|
|
|
}
|
|
|
|
|
|
|
|
st = &t->timers[timer];
|
|
|
|
|
|
|
|
switch (addr) {
|
|
|
|
case R_TIM_VAL:
|
|
|
|
ret = ptimer_get_count(st->ptimer);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case R_TIM_MIS:
|
|
|
|
isr = !!(st->regs[R_TIM_RIS] & TIMER_RIS_ACK);
|
|
|
|
ier = !!(st->regs[R_TIM_CTRL] & TIMER_CTRL_INTR);
|
|
|
|
ret = ier & isr;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
if (addr < R_TIM1_MAX) {
|
|
|
|
ret = st->regs[addr];
|
|
|
|
} else {
|
|
|
|
qemu_log_mask(LOG_GUEST_ERROR,
|
|
|
|
TYPE_MSS_TIMER": 64-bit mode not supported\n");
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
DB_PRINT("timer=%d 0x%" HWADDR_PRIx "=0x%" PRIx32, timer, offset,
|
|
|
|
ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
timer_write(void *opaque, hwaddr offset,
|
|
|
|
uint64_t val64, unsigned int size)
|
|
|
|
{
|
|
|
|
MSSTimerState *t = opaque;
|
|
|
|
hwaddr addr;
|
|
|
|
struct Msf2Timer *st;
|
|
|
|
int timer = 0;
|
|
|
|
uint32_t value = val64;
|
|
|
|
|
|
|
|
addr = offset >> 2;
|
|
|
|
/*
|
|
|
|
* Two independent timers has same base address.
|
|
|
|
* Based on addr passed figure out which timer is being used.
|
|
|
|
*/
|
|
|
|
if ((addr >= R_TIM1_MAX) && (addr < NUM_TIMERS * R_TIM1_MAX)) {
|
|
|
|
timer = 1;
|
|
|
|
addr -= R_TIM1_MAX;
|
|
|
|
}
|
|
|
|
|
|
|
|
st = &t->timers[timer];
|
|
|
|
|
|
|
|
DB_PRINT("addr=0x%" HWADDR_PRIx " val=0x%" PRIx32 " (timer=%d)", offset,
|
|
|
|
value, timer);
|
|
|
|
|
|
|
|
switch (addr) {
|
|
|
|
case R_TIM_CTRL:
|
|
|
|
st->regs[R_TIM_CTRL] = value;
|
2019-10-08 19:17:38 +02:00
|
|
|
ptimer_transaction_begin(st->ptimer);
|
2017-09-20 22:17:33 +02:00
|
|
|
timer_update(st);
|
2019-10-08 19:17:38 +02:00
|
|
|
ptimer_transaction_commit(st->ptimer);
|
2017-09-20 22:17:33 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case R_TIM_RIS:
|
|
|
|
if (value & TIMER_RIS_ACK) {
|
|
|
|
st->regs[R_TIM_RIS] &= ~TIMER_RIS_ACK;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case R_TIM_LOADVAL:
|
|
|
|
st->regs[R_TIM_LOADVAL] = value;
|
|
|
|
if (st->regs[R_TIM_CTRL] & TIMER_CTRL_ENBL) {
|
2019-10-08 19:17:38 +02:00
|
|
|
ptimer_transaction_begin(st->ptimer);
|
2017-09-20 22:17:33 +02:00
|
|
|
timer_update(st);
|
2019-10-08 19:17:38 +02:00
|
|
|
ptimer_transaction_commit(st->ptimer);
|
2017-09-20 22:17:33 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case R_TIM_BGLOADVAL:
|
|
|
|
st->regs[R_TIM_BGLOADVAL] = value;
|
|
|
|
st->regs[R_TIM_LOADVAL] = value;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case R_TIM_VAL:
|
|
|
|
case R_TIM_MIS:
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
if (addr < R_TIM1_MAX) {
|
|
|
|
st->regs[addr] = value;
|
|
|
|
} else {
|
|
|
|
qemu_log_mask(LOG_GUEST_ERROR,
|
|
|
|
TYPE_MSS_TIMER": 64-bit mode not supported\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
timer_update_irq(st);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const MemoryRegionOps timer_ops = {
|
|
|
|
.read = timer_read,
|
|
|
|
.write = timer_write,
|
|
|
|
.endianness = DEVICE_NATIVE_ENDIAN,
|
|
|
|
.valid = {
|
|
|
|
.min_access_size = 1,
|
|
|
|
.max_access_size = 4
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
static void timer_hit(void *opaque)
|
|
|
|
{
|
|
|
|
struct Msf2Timer *st = opaque;
|
|
|
|
|
|
|
|
st->regs[R_TIM_RIS] |= TIMER_RIS_ACK;
|
|
|
|
|
|
|
|
if (!(st->regs[R_TIM_CTRL] & TIMER_CTRL_ONESHOT)) {
|
|
|
|
timer_update(st);
|
|
|
|
}
|
|
|
|
timer_update_irq(st);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void mss_timer_init(Object *obj)
|
|
|
|
{
|
|
|
|
MSSTimerState *t = MSS_TIMER(obj);
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* Init all the ptimers. */
|
|
|
|
for (i = 0; i < NUM_TIMERS; i++) {
|
|
|
|
struct Msf2Timer *st = &t->timers[i];
|
|
|
|
|
2019-10-08 19:17:38 +02:00
|
|
|
st->ptimer = ptimer_init(timer_hit, st, PTIMER_POLICY_DEFAULT);
|
|
|
|
ptimer_transaction_begin(st->ptimer);
|
2017-09-20 22:17:33 +02:00
|
|
|
ptimer_set_freq(st->ptimer, t->freq_hz);
|
2019-10-08 19:17:38 +02:00
|
|
|
ptimer_transaction_commit(st->ptimer);
|
2017-09-20 22:17:33 +02:00
|
|
|
sysbus_init_irq(SYS_BUS_DEVICE(obj), &st->irq);
|
|
|
|
}
|
|
|
|
|
|
|
|
memory_region_init_io(&t->mmio, OBJECT(t), &timer_ops, t, TYPE_MSS_TIMER,
|
|
|
|
NUM_TIMERS * R_TIM1_MAX * 4);
|
|
|
|
sysbus_init_mmio(SYS_BUS_DEVICE(obj), &t->mmio);
|
|
|
|
}
|
|
|
|
|
2020-12-17 12:31:53 +01:00
|
|
|
static void mss_timer_finalize(Object *obj)
|
|
|
|
{
|
|
|
|
MSSTimerState *t = MSS_TIMER(obj);
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < NUM_TIMERS; i++) {
|
|
|
|
struct Msf2Timer *st = &t->timers[i];
|
|
|
|
|
|
|
|
ptimer_free(st->ptimer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-20 22:17:33 +02:00
|
|
|
static const VMStateDescription vmstate_timers = {
|
|
|
|
.name = "mss-timer-block",
|
|
|
|
.version_id = 1,
|
|
|
|
.minimum_version_id = 1,
|
|
|
|
.fields = (VMStateField[]) {
|
|
|
|
VMSTATE_PTIMER(ptimer, struct Msf2Timer),
|
|
|
|
VMSTATE_UINT32_ARRAY(regs, struct Msf2Timer, R_TIM1_MAX),
|
|
|
|
VMSTATE_END_OF_LIST()
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
static const VMStateDescription vmstate_mss_timer = {
|
|
|
|
.name = TYPE_MSS_TIMER,
|
|
|
|
.version_id = 1,
|
|
|
|
.minimum_version_id = 1,
|
|
|
|
.fields = (VMStateField[]) {
|
|
|
|
VMSTATE_UINT32(freq_hz, MSSTimerState),
|
|
|
|
VMSTATE_STRUCT_ARRAY(timers, MSSTimerState, NUM_TIMERS, 0,
|
|
|
|
vmstate_timers, struct Msf2Timer),
|
|
|
|
VMSTATE_END_OF_LIST()
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
static Property mss_timer_properties[] = {
|
|
|
|
/* Libero GUI shows 100Mhz as default for clocks */
|
|
|
|
DEFINE_PROP_UINT32("clock-frequency", MSSTimerState, freq_hz,
|
|
|
|
100 * 1000000),
|
|
|
|
DEFINE_PROP_END_OF_LIST(),
|
|
|
|
};
|
|
|
|
|
|
|
|
static void mss_timer_class_init(ObjectClass *klass, void *data)
|
|
|
|
{
|
|
|
|
DeviceClass *dc = DEVICE_CLASS(klass);
|
|
|
|
|
2020-01-10 16:30:32 +01:00
|
|
|
device_class_set_props(dc, mss_timer_properties);
|
2017-09-20 22:17:33 +02:00
|
|
|
dc->vmsd = &vmstate_mss_timer;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const TypeInfo mss_timer_info = {
|
|
|
|
.name = TYPE_MSS_TIMER,
|
|
|
|
.parent = TYPE_SYS_BUS_DEVICE,
|
|
|
|
.instance_size = sizeof(MSSTimerState),
|
|
|
|
.instance_init = mss_timer_init,
|
2020-12-17 12:31:53 +01:00
|
|
|
.instance_finalize = mss_timer_finalize,
|
2017-09-20 22:17:33 +02:00
|
|
|
.class_init = mss_timer_class_init,
|
|
|
|
};
|
|
|
|
|
|
|
|
static void mss_timer_register_types(void)
|
|
|
|
{
|
|
|
|
type_register_static(&mss_timer_info);
|
|
|
|
}
|
|
|
|
|
|
|
|
type_init(mss_timer_register_types)
|