[PATCH v8 0/2] Add watchdog support for SbsaQemu

Shashi Mallela posted 2 patches 3 years, 6 months ago
Test checkpatch passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20201027015927.29495-1-shashi.mallela@linaro.org
Maintainers: Radoslaw Biernacki <rad@semihalf.com>, Leif Lindholm <leif@nuviainc.com>, Peter Maydell <peter.maydell@linaro.org>
hw/arm/Kconfig                  |   1 +
hw/arm/sbsa-ref.c               |  23 +++
hw/watchdog/Kconfig             |   3 +
hw/watchdog/meson.build         |   1 +
hw/watchdog/sbsa_gwdt.c         | 293 ++++++++++++++++++++++++++++++++
include/hw/watchdog/sbsa_gwdt.h |  79 +++++++++
6 files changed, 400 insertions(+)
create mode 100644 hw/watchdog/sbsa_gwdt.c
create mode 100644 include/hw/watchdog/sbsa_gwdt.h
[PATCH v8 0/2] Add watchdog support for SbsaQemu
Posted by Shashi Mallela 3 years, 6 months ago
This patch series adds watchdog timer support for SbsaQemu platform.

The watchdog timer has been implemented first based on the generic
watchdog timer specifications from ARM SBSA v6.0 and then used 
in the SbsaQemu reference platform

Changes in v8:
- cleared irq also along with ws0 clear on each explicit refresh
- addressed additional review comments

Shashi Mallela (2):
  hw/watchdog: Implement SBSA watchdog device
  hw/arm/sbsa-ref: add SBSA watchdog device

 hw/arm/Kconfig                  |   1 +
 hw/arm/sbsa-ref.c               |  23 +++
 hw/watchdog/Kconfig             |   3 +
 hw/watchdog/meson.build         |   1 +
 hw/watchdog/sbsa_gwdt.c         | 293 ++++++++++++++++++++++++++++++++
 include/hw/watchdog/sbsa_gwdt.h |  79 +++++++++
 6 files changed, 400 insertions(+)
 create mode 100644 hw/watchdog/sbsa_gwdt.c
 create mode 100644 include/hw/watchdog/sbsa_gwdt.h

-- 
2.18.4


Re: [PATCH v8 0/2] Add watchdog support for SbsaQemu
Posted by Peter Maydell 3 years, 6 months ago
On Tue, 27 Oct 2020 at 01:59, Shashi Mallela <shashi.mallela@linaro.org> wrote:
>
> This patch series adds watchdog timer support for SbsaQemu platform.
>
> The watchdog timer has been implemented first based on the generic
> watchdog timer specifications from ARM SBSA v6.0 and then used
> in the SbsaQemu reference platform
>
> Changes in v8:
> - cleared irq also along with ws0 clear on each explicit refresh
> - addressed additional review comments
>
> Shashi Mallela (2):
>   hw/watchdog: Implement SBSA watchdog device
>   hw/arm/sbsa-ref: add SBSA watchdog device

Applied to target-arm.next. Thanks for the respins and for
working through our code review process.

-- PMM