mbox series

[0/3] Integrate renesas MCU/SoC timer module

Message ID 20210623123416.60038-1-ysato@users.sourceforge.jp (mailing list archive)
Headers show
Series Integrate renesas MCU/SoC timer module | expand

Message

Yoshinori Sato June 23, 2021, 12:34 p.m. UTC
SH4 TMU and RX CMT have simler functions.
Integrate the sh_timer and renesas_cmt.

Yoshinori Sato (3):
  hw/timer: Add renesas_timer.
  hw/rx: rx62n switch renesas_timer.
  hw/sh4: sh7750 switch renesas_timer.

 include/hw/rx/rx62n.h            |   4 +-
 include/hw/timer/renesas_timer.h |  89 ++++++
 hw/sh4/sh7750.c                  |  32 +-
 hw/timer/renesas_timer.c         | 532 +++++++++++++++++++++++++++++++
 hw/rx/Kconfig                    |   2 +-
 hw/sh4/Kconfig                   |   2 +-
 hw/timer/Kconfig                 |   3 +-
 hw/timer/meson.build             |   1 +
 8 files changed, 657 insertions(+), 8 deletions(-)
 create mode 100644 include/hw/timer/renesas_timer.h
 create mode 100644 hw/timer/renesas_timer.c