[PATCH v2 0/4] Trivial ARM changes

Bernhard Beschow posted 4 patches 2 weeks, 6 days ago
meson.build            |  1 +
hw/sensor/trace.h      |  1 +
hw/rtc/ds1338.c        |  6 ++++++
hw/sensor/tmp105.c     |  7 ++++++-
hw/timer/imx_gpt.c     | 18 +++++-------------
hw/watchdog/wdt_imx2.c |  1 -
hw/rtc/trace-events    |  4 ++++
hw/sensor/trace-events |  6 ++++++
hw/timer/trace-events  |  6 ++++++
9 files changed, 35 insertions(+), 15 deletions(-)
create mode 100644 hw/sensor/trace.h
create mode 100644 hw/sensor/trace-events
[PATCH v2 0/4] Trivial ARM changes
Posted by Bernhard Beschow 2 weeks, 6 days ago
This series improves the tracing experience in three devices used in ARM
context. It also removes a duplicate statement in an IMX watchdog.

v2:
* Fix format strings in trace events for imx_gpt (Phil)
* Add patch for tmp105 which improves tracing

Bernhard Beschow (4):
  hw/rtc/ds1338: Trace send and receive operations
  hw/timer/imx_gpt: Convert DPRINTF to trace events
  hw/watchdog/wdt_imx2: Remove redundant assignment
  hw/sensor/tmp105: Convert printf() to trace event, add tracing for
    read/write access

 meson.build            |  1 +
 hw/sensor/trace.h      |  1 +
 hw/rtc/ds1338.c        |  6 ++++++
 hw/sensor/tmp105.c     |  7 ++++++-
 hw/timer/imx_gpt.c     | 18 +++++-------------
 hw/watchdog/wdt_imx2.c |  1 -
 hw/rtc/trace-events    |  4 ++++
 hw/sensor/trace-events |  6 ++++++
 hw/timer/trace-events  |  6 ++++++
 9 files changed, 35 insertions(+), 15 deletions(-)
 create mode 100644 hw/sensor/trace.h
 create mode 100644 hw/sensor/trace-events

-- 
2.47.0

Re: [PATCH v2 0/4] Trivial ARM changes
Posted by Peter Maydell 2 weeks, 5 days ago
On Sun, 3 Nov 2024 at 14:34, Bernhard Beschow <shentey@gmail.com> wrote:
>
> This series improves the tracing experience in three devices used in ARM
> context. It also removes a duplicate statement in an IMX watchdog.
>
> v2:
> * Fix format strings in trace events for imx_gpt (Phil)
> * Add patch for tmp105 which improves tracing
>
> Bernhard Beschow (4):
>   hw/rtc/ds1338: Trace send and receive operations
>   hw/timer/imx_gpt: Convert DPRINTF to trace events
>   hw/watchdog/wdt_imx2: Remove redundant assignment
>   hw/sensor/tmp105: Convert printf() to trace event, add tracing for
>     read/write access



Applied to target-arm.next, thanks.

-- PMM