mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-02 20:37:48 +00:00
hw/timer/pl031: Convert to using trace events
Convert the debug printing in the PL031 device to use trace events, and augment it to cover the interesting parts of device operation. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
b0de99f3e9
commit
dd849ef2c9
2 changed files with 36 additions and 25 deletions
|
@ -18,15 +18,7 @@
|
|||
#include "sysemu/sysemu.h"
|
||||
#include "qemu/cutils.h"
|
||||
#include "qemu/log.h"
|
||||
|
||||
//#define DEBUG_PL031
|
||||
|
||||
#ifdef DEBUG_PL031
|
||||
#define DPRINTF(fmt, ...) \
|
||||
do { printf("pl031: " fmt , ## __VA_ARGS__); } while (0)
|
||||
#else
|
||||
#define DPRINTF(fmt, ...) do {} while(0)
|
||||
#endif
|
||||
#include "trace.h"
|
||||
|
||||
#define RTC_DR 0x00 /* Data read register */
|
||||
#define RTC_MR 0x04 /* Match register */
|
||||
|
@ -44,7 +36,10 @@ static const unsigned char pl031_id[] = {
|
|||
|
||||
static void pl031_update(PL031State *s)
|
||||
{
|
||||
qemu_set_irq(s->irq, s->is & s->im);
|
||||
uint32_t flags = s->is & s->im;
|
||||
|
||||
trace_pl031_irq_state(flags);
|
||||
qemu_set_irq(s->irq, flags);
|
||||
}
|
||||
|
||||
static void pl031_interrupt(void * opaque)
|
||||
|
@ -52,7 +47,7 @@ static void pl031_interrupt(void * opaque)
|
|||
PL031State *s = (PL031State *)opaque;
|
||||
|
||||
s->is = 1;
|
||||
DPRINTF("Alarm raised\n");
|
||||
trace_pl031_alarm_raised();
|
||||
pl031_update(s);
|
||||
}
|
||||
|
||||
|
@ -69,7 +64,7 @@ static void pl031_set_alarm(PL031State *s)
|
|||
/* The timer wraps around. This subtraction also wraps in the same way,
|
||||
and gives correct results when alarm < now_ticks. */
|
||||
ticks = s->mr - pl031_get_count(s);
|
||||
DPRINTF("Alarm set in %ud ticks\n", ticks);
|
||||
trace_pl031_set_alarm(ticks);
|
||||
if (ticks == 0) {
|
||||
timer_del(s->timer);
|
||||
pl031_interrupt(s);
|
||||
|
@ -83,38 +78,49 @@ static uint64_t pl031_read(void *opaque, hwaddr offset,
|
|||
unsigned size)
|
||||
{
|
||||
PL031State *s = (PL031State *)opaque;
|
||||
|
||||
if (offset >= 0xfe0 && offset < 0x1000)
|
||||
return pl031_id[(offset - 0xfe0) >> 2];
|
||||
uint64_t r;
|
||||
|
||||
switch (offset) {
|
||||
case RTC_DR:
|
||||
return pl031_get_count(s);
|
||||
r = pl031_get_count(s);
|
||||
break;
|
||||
case RTC_MR:
|
||||
return s->mr;
|
||||
r = s->mr;
|
||||
break;
|
||||
case RTC_IMSC:
|
||||
return s->im;
|
||||
r = s->im;
|
||||
break;
|
||||
case RTC_RIS:
|
||||
return s->is;
|
||||
r = s->is;
|
||||
break;
|
||||
case RTC_LR:
|
||||
return s->lr;
|
||||
r = s->lr;
|
||||
break;
|
||||
case RTC_CR:
|
||||
/* RTC is permanently enabled. */
|
||||
return 1;
|
||||
r = 1;
|
||||
break;
|
||||
case RTC_MIS:
|
||||
return s->is & s->im;
|
||||
r = s->is & s->im;
|
||||
break;
|
||||
case 0xfe0 ... 0xfff:
|
||||
r = pl031_id[(offset - 0xfe0) >> 2];
|
||||
break;
|
||||
case RTC_ICR:
|
||||
qemu_log_mask(LOG_GUEST_ERROR,
|
||||
"pl031: read of write-only register at offset 0x%x\n",
|
||||
(int)offset);
|
||||
r = 0;
|
||||
break;
|
||||
default:
|
||||
qemu_log_mask(LOG_GUEST_ERROR,
|
||||
"pl031_read: Bad offset 0x%x\n", (int)offset);
|
||||
r = 0;
|
||||
break;
|
||||
}
|
||||
|
||||
return 0;
|
||||
trace_pl031_read(offset, r);
|
||||
return r;
|
||||
}
|
||||
|
||||
static void pl031_write(void * opaque, hwaddr offset,
|
||||
|
@ -122,6 +128,7 @@ static void pl031_write(void * opaque, hwaddr offset,
|
|||
{
|
||||
PL031State *s = (PL031State *)opaque;
|
||||
|
||||
trace_pl031_write(offset, value);
|
||||
|
||||
switch (offset) {
|
||||
case RTC_LR:
|
||||
|
@ -134,7 +141,6 @@ static void pl031_write(void * opaque, hwaddr offset,
|
|||
break;
|
||||
case RTC_IMSC:
|
||||
s->im = value & 1;
|
||||
DPRINTF("Interrupt mask %d\n", s->im);
|
||||
pl031_update(s);
|
||||
break;
|
||||
case RTC_ICR:
|
||||
|
@ -142,7 +148,6 @@ static void pl031_write(void * opaque, hwaddr offset,
|
|||
cleared when bit 0 of the written value is set. However the
|
||||
arm926e documentation (DDI0287B) states that the interrupt is
|
||||
cleared when any value is written. */
|
||||
DPRINTF("Interrupt cleared");
|
||||
s->is = 0;
|
||||
pl031_update(s);
|
||||
break;
|
||||
|
|
|
@ -77,3 +77,9 @@ xlnx_zynqmp_rtc_gettime(int year, int month, int day, int hour, int min, int sec
|
|||
nrf51_timer_read(uint64_t addr, uint32_t value, unsigned size) "read addr 0x%" PRIx64 " data 0x%" PRIx32 " size %u"
|
||||
nrf51_timer_write(uint64_t addr, uint32_t value, unsigned size) "write addr 0x%" PRIx64 " data 0x%" PRIx32 " size %u"
|
||||
|
||||
# hw/timer/pl031.c
|
||||
pl031_irq_state(int level) "irq state %d"
|
||||
pl031_read(uint32_t addr, uint32_t value) "addr 0x%08x value 0x%08x"
|
||||
pl031_write(uint32_t addr, uint32_t value) "addr 0x%08x value 0x%08x"
|
||||
pl031_alarm_raised(void) "alarm raised"
|
||||
pl031_set_alarm(uint32_t ticks) "alarm set for %u ticks"
|
||||
|
|
Loading…
Reference in a new issue