* [PATCH 0/8] hw/arm: Implement i.MX watchdog support
@ 2020-03-14 17:27 Guenter Roeck
2020-03-14 17:27 ` [PATCH 1/8] hw: Move i.MX watchdog driver to hw/watchdog Guenter Roeck
` (7 more replies)
0 siblings, 8 replies; 16+ messages in thread
From: Guenter Roeck @ 2020-03-14 17:27 UTC (permalink / raw)
To: Peter Maydell
Cc: Andrey Smirnov, qemu-devel, Jean-Christophe Dubois, qemu-arm,
Peter Chubb, Guenter Roeck
The current i.MX watchdog implementation only supports resets.
This patch series implements the full watchdog, including optional
pretimeout support.
Notable changes:
- The existing i.MX watchdog emulation (which only emulates syste resets)
is moved from hw/misc to hw/watchdog and renamed to match the naming
convention in hw/watchdog (patch 1/8).
- Full watchdog support is implemented in patch 2/8.
- The watchdog is wired up for i.MX25 and i.MX31 emulations (patch 3/8 and
4/8).
- The watchdog interrupt (for pretimeout support) is connected for
i.MX6, i.MX6UL, and i.MX7 emulations (patch 5/8, 6/8, and 8/8).
- For i.MX7, various devices are wired up as unimplemented
devices (patch 7/8). This was necessary to avoid crashes when
booting recent Linux kernels.
The code was tested with all available emulations.
----------------------------------------------------------------
Guenter Roeck (8):
hw: Move i.MX watchdog driver to hw/watchdog
hw/watchdog: Implement full i.MX watchdog support
hw/arm/fsl-imx25: Wire up watchdog
hw/arm/fsl-imx31: Wire up watchdog
hw/arm/fsl-imx6: Connect watchdog interrupts
hw/arm/fsl-imx6ul: Connect watchdog interrupts
hw/arm/fsl-imx7: Instantiate various unimplemented devices
hw/arm/fsl-imx7: Connect watchdog interrupts
MAINTAINERS | 2 +
hw/arm/fsl-imx25.c | 10 ++
hw/arm/fsl-imx31.c | 6 +
hw/arm/fsl-imx6.c | 9 ++
hw/arm/fsl-imx6ul.c | 10 ++
hw/arm/fsl-imx7.c | 35 ++++++
hw/misc/Makefile.objs | 1 -
hw/misc/imx2_wdt.c | 90 --------------
hw/watchdog/Kconfig | 5 +
hw/watchdog/Makefile.objs | 1 +
hw/watchdog/wdt_imx2.c | 262 +++++++++++++++++++++++++++++++++++++++++
include/hw/arm/fsl-imx25.h | 5 +
include/hw/arm/fsl-imx31.h | 4 +
include/hw/arm/fsl-imx6.h | 2 +-
include/hw/arm/fsl-imx6ul.h | 2 +-
include/hw/arm/fsl-imx7.h | 23 +++-
include/hw/misc/imx2_wdt.h | 33 ------
include/hw/watchdog/wdt_imx2.h | 78 ++++++++++++
18 files changed, 451 insertions(+), 127 deletions(-)
delete mode 100644 hw/misc/imx2_wdt.c
create mode 100644 hw/watchdog/wdt_imx2.c
delete mode 100644 include/hw/misc/imx2_wdt.h
create mode 100644 include/hw/watchdog/wdt_imx2.h
^ permalink raw reply [flat|nested] 16+ messages in thread
* [PATCH 1/8] hw: Move i.MX watchdog driver to hw/watchdog
2020-03-14 17:27 [PATCH 0/8] hw/arm: Implement i.MX watchdog support Guenter Roeck
@ 2020-03-14 17:27 ` Guenter Roeck
2020-03-14 21:43 ` Philippe Mathieu-Daudé
2020-03-14 17:27 ` [PATCH 2/8] hw/watchdog: Implement full i.MX watchdog support Guenter Roeck
` (6 subsequent siblings)
7 siblings, 1 reply; 16+ messages in thread
From: Guenter Roeck @ 2020-03-14 17:27 UTC (permalink / raw)
To: Peter Maydell
Cc: Andrey Smirnov, qemu-devel, Jean-Christophe Dubois, qemu-arm,
Peter Chubb, Guenter Roeck
In preparation for a full implementation, move i.MX watchdog driver
from hw/misc to hw/watchdog. While at it, add the watchdog files
to MAINTAINERS.
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
---
MAINTAINERS | 2 ++
hw/misc/Makefile.objs | 1 -
hw/watchdog/Kconfig | 5 +++++
hw/watchdog/Makefile.objs | 1 +
hw/{misc/imx2_wdt.c => watchdog/wdt_imx2.c} | 2 +-
include/hw/arm/fsl-imx6.h | 2 +-
include/hw/arm/fsl-imx6ul.h | 2 +-
include/hw/arm/fsl-imx7.h | 2 +-
include/hw/{misc/imx2_wdt.h => watchdog/wdt_imx2.h} | 0
9 files changed, 12 insertions(+), 5 deletions(-)
rename hw/{misc/imx2_wdt.c => watchdog/wdt_imx2.c} (98%)
rename include/hw/{misc/imx2_wdt.h => watchdog/wdt_imx2.h} (100%)
diff --git a/MAINTAINERS b/MAINTAINERS
index 32867bc636..d1197014e8 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -603,8 +603,10 @@ S: Odd Fixes
F: hw/arm/fsl-imx25.c
F: hw/arm/imx25_pdk.c
F: hw/misc/imx25_ccm.c
+F: hw/watchdog/wdt_imx2.c
F: include/hw/arm/fsl-imx25.h
F: include/hw/misc/imx25_ccm.h
+F: include/hw/watchdog/wdt_imx2.h
i.MX31 (kzm)
M: Peter Chubb <peter.chubb@nicta.com.au>
diff --git a/hw/misc/Makefile.objs b/hw/misc/Makefile.objs
index 68aae2eabb..b25181b711 100644
--- a/hw/misc/Makefile.objs
+++ b/hw/misc/Makefile.objs
@@ -44,7 +44,6 @@ common-obj-$(CONFIG_IMX) += imx6_ccm.o
common-obj-$(CONFIG_IMX) += imx6ul_ccm.o
obj-$(CONFIG_IMX) += imx6_src.o
common-obj-$(CONFIG_IMX) += imx7_ccm.o
-common-obj-$(CONFIG_IMX) += imx2_wdt.o
common-obj-$(CONFIG_IMX) += imx7_snvs.o
common-obj-$(CONFIG_IMX) += imx7_gpr.o
common-obj-$(CONFIG_IMX) += imx_rngc.o
diff --git a/hw/watchdog/Kconfig b/hw/watchdog/Kconfig
index 2118d897c9..2c225b4b17 100644
--- a/hw/watchdog/Kconfig
+++ b/hw/watchdog/Kconfig
@@ -14,3 +14,8 @@ config WDT_IB700
config WDT_DIAG288
bool
+
+config WDT_IMX2
+ bool
+ default y
+ depends on IMX
diff --git a/hw/watchdog/Makefile.objs b/hw/watchdog/Makefile.objs
index 3f536d1cad..dd9b37f642 100644
--- a/hw/watchdog/Makefile.objs
+++ b/hw/watchdog/Makefile.objs
@@ -4,3 +4,4 @@ common-obj-$(CONFIG_WDT_IB6300ESB) += wdt_i6300esb.o
common-obj-$(CONFIG_WDT_IB700) += wdt_ib700.o
common-obj-$(CONFIG_WDT_DIAG288) += wdt_diag288.o
common-obj-$(CONFIG_ASPEED_SOC) += wdt_aspeed.o
+common-obj-$(CONFIG_WDT_IMX) += wdt_imx2.o
diff --git a/hw/misc/imx2_wdt.c b/hw/watchdog/wdt_imx2.c
similarity index 98%
rename from hw/misc/imx2_wdt.c
rename to hw/watchdog/wdt_imx2.c
index 2aedfe803a..ad1ef02e9e 100644
--- a/hw/misc/imx2_wdt.c
+++ b/hw/watchdog/wdt_imx2.c
@@ -14,7 +14,7 @@
#include "qemu/module.h"
#include "sysemu/watchdog.h"
-#include "hw/misc/imx2_wdt.h"
+#include "hw/watchdog/wdt_imx2.h"
#define IMX2_WDT_WCR_WDA BIT(5) /* -> External Reset WDOG_B */
#define IMX2_WDT_WCR_SRS BIT(4) /* -> Software Reset Signal */
diff --git a/include/hw/arm/fsl-imx6.h b/include/hw/arm/fsl-imx6.h
index 60eadccb42..5b02dc1f4b 100644
--- a/include/hw/arm/fsl-imx6.h
+++ b/include/hw/arm/fsl-imx6.h
@@ -21,7 +21,7 @@
#include "hw/cpu/a9mpcore.h"
#include "hw/misc/imx6_ccm.h"
#include "hw/misc/imx6_src.h"
-#include "hw/misc/imx2_wdt.h"
+#include "hw/watchdog/wdt_imx2.h"
#include "hw/char/imx_serial.h"
#include "hw/timer/imx_gpt.h"
#include "hw/timer/imx_epit.h"
diff --git a/include/hw/arm/fsl-imx6ul.h b/include/hw/arm/fsl-imx6ul.h
index eda389aec7..91c746918a 100644
--- a/include/hw/arm/fsl-imx6ul.h
+++ b/include/hw/arm/fsl-imx6ul.h
@@ -24,7 +24,7 @@
#include "hw/misc/imx7_snvs.h"
#include "hw/misc/imx7_gpr.h"
#include "hw/intc/imx_gpcv2.h"
-#include "hw/misc/imx2_wdt.h"
+#include "hw/watchdog/wdt_imx2.h"
#include "hw/gpio/imx_gpio.h"
#include "hw/char/imx_serial.h"
#include "hw/timer/imx_gpt.h"
diff --git a/include/hw/arm/fsl-imx7.h b/include/hw/arm/fsl-imx7.h
index 706aef2e7e..3a0041c4c2 100644
--- a/include/hw/arm/fsl-imx7.h
+++ b/include/hw/arm/fsl-imx7.h
@@ -26,7 +26,7 @@
#include "hw/misc/imx7_snvs.h"
#include "hw/misc/imx7_gpr.h"
#include "hw/misc/imx6_src.h"
-#include "hw/misc/imx2_wdt.h"
+#include "hw/watchdog/wdt_imx2.h"
#include "hw/gpio/imx_gpio.h"
#include "hw/char/imx_serial.h"
#include "hw/timer/imx_gpt.h"
diff --git a/include/hw/misc/imx2_wdt.h b/include/hw/watchdog/wdt_imx2.h
similarity index 100%
rename from include/hw/misc/imx2_wdt.h
rename to include/hw/watchdog/wdt_imx2.h
--
2.17.1
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [PATCH 2/8] hw/watchdog: Implement full i.MX watchdog support
2020-03-14 17:27 [PATCH 0/8] hw/arm: Implement i.MX watchdog support Guenter Roeck
2020-03-14 17:27 ` [PATCH 1/8] hw: Move i.MX watchdog driver to hw/watchdog Guenter Roeck
@ 2020-03-14 17:27 ` Guenter Roeck
2020-03-14 17:27 ` [PATCH 3/8] hw/arm/fsl-imx25: Wire up watchdog Guenter Roeck
` (5 subsequent siblings)
7 siblings, 0 replies; 16+ messages in thread
From: Guenter Roeck @ 2020-03-14 17:27 UTC (permalink / raw)
To: Peter Maydell
Cc: Andrey Smirnov, qemu-devel, Jean-Christophe Dubois, qemu-arm,
Peter Chubb, Guenter Roeck
Implement full support for the watchdog in i.MX systems.
Pretimeout support is optional because the watchdog hardware on i.MX31
does not support pretimeouts.
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
---
hw/watchdog/Makefile.objs | 2 +-
hw/watchdog/wdt_imx2.c | 196 +++++++++++++++++++++++++++++++--
include/hw/watchdog/wdt_imx2.h | 49 ++++++++-
3 files changed, 232 insertions(+), 15 deletions(-)
diff --git a/hw/watchdog/Makefile.objs b/hw/watchdog/Makefile.objs
index dd9b37f642..631b711d86 100644
--- a/hw/watchdog/Makefile.objs
+++ b/hw/watchdog/Makefile.objs
@@ -4,4 +4,4 @@ common-obj-$(CONFIG_WDT_IB6300ESB) += wdt_i6300esb.o
common-obj-$(CONFIG_WDT_IB700) += wdt_ib700.o
common-obj-$(CONFIG_WDT_DIAG288) += wdt_diag288.o
common-obj-$(CONFIG_ASPEED_SOC) += wdt_aspeed.o
-common-obj-$(CONFIG_WDT_IMX) += wdt_imx2.o
+common-obj-$(CONFIG_WDT_IMX2) += wdt_imx2.o
diff --git a/hw/watchdog/wdt_imx2.c b/hw/watchdog/wdt_imx2.c
index ad1ef02e9e..f5339f3590 100644
--- a/hw/watchdog/wdt_imx2.c
+++ b/hw/watchdog/wdt_imx2.c
@@ -13,24 +13,157 @@
#include "qemu/bitops.h"
#include "qemu/module.h"
#include "sysemu/watchdog.h"
+#include "migration/vmstate.h"
+#include "hw/qdev-properties.h"
#include "hw/watchdog/wdt_imx2.h"
-#define IMX2_WDT_WCR_WDA BIT(5) /* -> External Reset WDOG_B */
-#define IMX2_WDT_WCR_SRS BIT(4) /* -> Software Reset Signal */
+static void imx2_wdt_interrupt(void *opaque)
+{
+ IMX2WdtState *s = IMX2_WDT(opaque);
+
+ s->wicr |= IMX2_WDT_WICR_WTIS;
+ qemu_set_irq(s->irq, 1);
+}
-static uint64_t imx2_wdt_read(void *opaque, hwaddr addr,
- unsigned int size)
+static void imx2_wdt_expired(void *opaque)
{
+ IMX2WdtState *s = IMX2_WDT(opaque);
+
+ s->wrsr = IMX2_WDT_WRSR_TOUT;
+
+ /* Perform watchdog action if watchdog is enabled */
+ if (s->wcr & IMX2_WDT_WCR_WDE) {
+ watchdog_perform_action();
+ }
+}
+
+static void imx2_wdt_reset(DeviceState *dev)
+{
+ IMX2WdtState *s = IMX2_WDT(dev);
+
+ s->wcr = IMX2_WDT_WCR_WDA | IMX2_WDT_WCR_SRS;
+ s->wsr = 0;
+ s->wrsr &= ~(IMX2_WDT_WRSR_TOUT | IMX2_WDT_WRSR_SFTW);
+ s->wicr = 4;
+ s->wmcr = IMX2_WDT_WMCR_PDE;
+}
+
+static uint64_t imx2_wdt_read(void *opaque, hwaddr addr, unsigned int size)
+{
+ IMX2WdtState *s = IMX2_WDT(opaque);
+
+ switch (addr) {
+ case IMX2_WDT_WCR:
+ return s->wcr;
+ case IMX2_WDT_WSR:
+ return s->wsr;
+ case IMX2_WDT_WRSR:
+ return s->wrsr;
+ case IMX2_WDT_WICR:
+ return s->wicr;
+ case IMX2_WDT_WMCR:
+ return s->wmcr;
+ }
return 0;
}
+static void imx_wdt2_update_itimer(IMX2WdtState *s, bool start)
+{
+ bool running = (s->wcr & IMX2_WDT_WCR_WDE) && (s->wcr & IMX2_WDT_WCR_WT);
+ bool enabled = s->wicr & IMX2_WDT_WICR_WIE;
+
+ ptimer_transaction_begin(s->itimer);
+ if (start || !enabled) {
+ ptimer_stop(s->itimer);
+ }
+ if (running && enabled) {
+ int count = ptimer_get_count(s->timer);
+ int pretimeout = s->wicr & IMX2_WDT_WICR_WICT;
+
+ /*
+ * Only (re-)start pretimeout timer if its counter value is larger
+ * than 0. Otherwise it will fire right away and we'll get an
+ * interrupt loop.
+ */
+ if (count > pretimeout) {
+ ptimer_set_count(s->itimer, count - pretimeout);
+ if (start) {
+ ptimer_run(s->itimer, 1);
+ }
+ }
+ }
+ ptimer_transaction_commit(s->itimer);
+}
+
+static void imx_wdt2_update_timer(IMX2WdtState *s, bool start)
+{
+ ptimer_transaction_begin(s->timer);
+ if (start) {
+ ptimer_stop(s->timer);
+ }
+ if ((s->wcr & IMX2_WDT_WCR_WDE) && (s->wcr & IMX2_WDT_WCR_WT)) {
+ int count = (s->wcr & IMX2_WDT_WCR_WT) >> 8;
+
+ ptimer_set_count(s->timer, count);
+ if (start) {
+ ptimer_run(s->timer, 1);
+ }
+ }
+ ptimer_transaction_commit(s->timer);
+ if (s->pretimeout_support) {
+ imx_wdt2_update_itimer(s, start);
+ }
+}
+
static void imx2_wdt_write(void *opaque, hwaddr addr,
uint64_t value, unsigned int size)
{
- if (addr == IMX2_WDT_WCR &&
- (~value & (IMX2_WDT_WCR_WDA | IMX2_WDT_WCR_SRS))) {
- watchdog_perform_action();
+ IMX2WdtState *s = IMX2_WDT(opaque);
+
+ switch (addr) {
+ case IMX2_WDT_WCR:
+ s->wcr = value;
+ if (!(value & IMX2_WDT_WCR_SRS)) {
+ s->wrsr = IMX2_WDT_WRSR_SFTW;
+ }
+ if (!(value & (IMX2_WDT_WCR_WDA | IMX2_WDT_WCR_SRS)) ||
+ (!(value & IMX2_WDT_WCR_WT) && (value & IMX2_WDT_WCR_WDE))) {
+ watchdog_perform_action();
+ }
+ s->wcr |= IMX2_WDT_WCR_SRS;
+ imx_wdt2_update_timer(s, true);
+ break;
+ case IMX2_WDT_WSR:
+ if (s->wsr == IMX2_WDT_SEQ1 && value == IMX2_WDT_SEQ2) {
+ imx_wdt2_update_timer(s, false);
+ }
+ s->wsr = value;
+ break;
+ case IMX2_WDT_WRSR:
+ break;
+ case IMX2_WDT_WICR:
+ if (!s->pretimeout_support) {
+ return;
+ }
+ /* The pretimeout value is write-once */
+ if (s->pretimeout_locked) {
+ value &= ~IMX2_WDT_WICR_WICT;
+ s->wicr &= (IMX2_WDT_WICR_WTIS | IMX2_WDT_WICR_WICT);
+ } else {
+ s->wicr &= IMX2_WDT_WICR_WTIS;
+ }
+ s->wicr |= value & (IMX2_WDT_WICR_WIE | IMX2_WDT_WICR_WICT);
+ if (value & IMX2_WDT_WICR_WTIS) {
+ s->wicr &= ~IMX2_WDT_WICR_WTIS;
+ qemu_set_irq(s->irq, 0);
+ }
+ imx_wdt2_update_itimer(s, true);
+ s->pretimeout_locked = true;
+ break;
+ case IMX2_WDT_WMCR:
+ s->wmcr = value & IMX2_WDT_WMCR_PDE;
+ break;
}
}
@@ -45,28 +178,67 @@ static const MemoryRegionOps imx2_wdt_ops = {
* real device but in practice there is no reason for a guest
* to access this device unaligned.
*/
- .min_access_size = 4,
- .max_access_size = 4,
+ .min_access_size = 2,
+ .max_access_size = 2,
.unaligned = false,
},
};
+static const VMStateDescription vmstate_imx2_wdt = {
+ .name = "imx2.wdt",
+ .fields = (VMStateField[]) {
+ VMSTATE_PTIMER(timer, IMX2WdtState),
+ VMSTATE_PTIMER(itimer, IMX2WdtState),
+ VMSTATE_BOOL(pretimeout_locked, IMX2WdtState),
+ VMSTATE_UINT16(wcr, IMX2WdtState),
+ VMSTATE_UINT16(wsr, IMX2WdtState),
+ VMSTATE_UINT16(wrsr, IMX2WdtState),
+ VMSTATE_UINT16(wmcr, IMX2WdtState),
+ VMSTATE_UINT16(wicr, IMX2WdtState),
+ VMSTATE_END_OF_LIST()
+ }
+};
+
static void imx2_wdt_realize(DeviceState *dev, Error **errp)
{
IMX2WdtState *s = IMX2_WDT(dev);
+ SysBusDevice *sbd = SYS_BUS_DEVICE(dev);
memory_region_init_io(&s->mmio, OBJECT(dev),
&imx2_wdt_ops, s,
- TYPE_IMX2_WDT".mmio",
- IMX2_WDT_REG_NUM * sizeof(uint16_t));
- sysbus_init_mmio(SYS_BUS_DEVICE(dev), &s->mmio);
+ TYPE_IMX2_WDT,
+ IMX2_WDT_MMIO_SIZE);
+ sysbus_init_mmio(sbd, &s->mmio);
+ sysbus_init_irq(sbd, &s->irq);
+
+ s->timer = ptimer_init(imx2_wdt_expired, s, PTIMER_POLICY_DEFAULT);
+ ptimer_transaction_begin(s->timer);
+ ptimer_set_freq(s->timer, 2);
+ ptimer_set_limit(s->timer, 0xff, 1);
+ ptimer_transaction_commit(s->timer);
+ if (s->pretimeout_support) {
+ s->itimer = ptimer_init(imx2_wdt_interrupt, s, PTIMER_POLICY_DEFAULT);
+ ptimer_transaction_begin(s->itimer);
+ ptimer_set_freq(s->itimer, 2);
+ ptimer_set_limit(s->itimer, 0xff, 1);
+ ptimer_transaction_commit(s->itimer);
+ }
}
+static Property imx2_wdt_properties[] = {
+ DEFINE_PROP_BOOL("pretimeout-support", IMX2WdtState, pretimeout_support,
+ false),
+};
+
static void imx2_wdt_class_init(ObjectClass *klass, void *data)
{
DeviceClass *dc = DEVICE_CLASS(klass);
+ device_class_set_props(dc, imx2_wdt_properties);
dc->realize = imx2_wdt_realize;
+ dc->reset = imx2_wdt_reset;
+ dc->vmsd = &vmstate_imx2_wdt;
+ dc->desc = "i.MX watchdog timer";
set_bit(DEVICE_CATEGORY_MISC, dc->categories);
}
diff --git a/include/hw/watchdog/wdt_imx2.h b/include/hw/watchdog/wdt_imx2.h
index b91b002528..bed7aa6835 100644
--- a/include/hw/watchdog/wdt_imx2.h
+++ b/include/hw/watchdog/wdt_imx2.h
@@ -12,22 +12,67 @@
#ifndef IMX2_WDT_H
#define IMX2_WDT_H
+#include "qemu/bitops.h"
#include "hw/sysbus.h"
+#include "hw/irq.h"
+#include "hw/ptimer.h"
#define TYPE_IMX2_WDT "imx2.wdt"
#define IMX2_WDT(obj) OBJECT_CHECK(IMX2WdtState, (obj), TYPE_IMX2_WDT)
enum IMX2WdtRegisters {
- IMX2_WDT_WCR = 0x0000,
- IMX2_WDT_REG_NUM = 0x0008 / sizeof(uint16_t) + 1,
+ IMX2_WDT_WCR = 0x0000, /* Control Register */
+ IMX2_WDT_WSR = 0x0002, /* Service Register */
+ IMX2_WDT_WRSR = 0x0004, /* Reset Status Register */
+ IMX2_WDT_WICR = 0x0006, /* Interrupt Control Register */
+ IMX2_WDT_WMCR = 0x0008, /* Misc Register */
};
+#define IMX2_WDT_MMIO_SIZE 0x000a
+
+/* Control Register definitions */
+#define IMX2_WDT_WCR_WT (0xFF << 8) /* Watchdog Timeout Field */
+#define IMX2_WDT_WCR_WDA BIT(5) /* WDOG Assertion */
+#define IMX2_WDT_WCR_SRS BIT(4) /* Software Reset Signal */
+#define IMX2_WDT_WCR_WDT BIT(3) /* WDOG Timeout Assertion */
+#define IMX2_WDT_WCR_WDE BIT(2) /* Watchdog Enable */
+#define IMX2_WDT_WCR_WDZST BIT(0) /* Watchdog Timer Suspend */
+
+/* Service Register definitions */
+#define IMX2_WDT_SEQ1 0x5555 /* service sequence 1 */
+#define IMX2_WDT_SEQ2 0xAAAA /* service sequence 2 */
+
+/* Reset Status Register definitions */
+#define IMX2_WDT_WRSR_TOUT BIT(1) /* Reset due to Timeout */
+#define IMX2_WDT_WRSR_SFTW BIT(0) /* Reset due to Timeout */
+
+/* Interrupt Control Register definitions */
+#define IMX2_WDT_WICR_WIE BIT(15) /* Interrupt Enable */
+#define IMX2_WDT_WICR_WTIS BIT(14) /* Interrupt Status */
+#define IMX2_WDT_WICR_WICT 0xff /* Interrupt Timeout */
+
+/* Misc Control Register definitions */
+#define IMX2_WDT_WMCR_PDE BIT(0) /* Power-Down Enable */
typedef struct IMX2WdtState {
/* <private> */
SysBusDevice parent_obj;
+ /*< public >*/
MemoryRegion mmio;
+ qemu_irq irq;
+
+ struct ptimer_state *timer;
+ struct ptimer_state *itimer;
+
+ bool pretimeout_support;
+ bool pretimeout_locked;
+
+ uint16_t wcr;
+ uint16_t wsr;
+ uint16_t wrsr;
+ uint16_t wicr;
+ uint16_t wmcr;
} IMX2WdtState;
#endif /* IMX2_WDT_H */
--
2.17.1
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [PATCH 3/8] hw/arm/fsl-imx25: Wire up watchdog
2020-03-14 17:27 [PATCH 0/8] hw/arm: Implement i.MX watchdog support Guenter Roeck
2020-03-14 17:27 ` [PATCH 1/8] hw: Move i.MX watchdog driver to hw/watchdog Guenter Roeck
2020-03-14 17:27 ` [PATCH 2/8] hw/watchdog: Implement full i.MX watchdog support Guenter Roeck
@ 2020-03-14 17:27 ` Guenter Roeck
2020-03-14 21:48 ` Philippe Mathieu-Daudé
2020-03-14 17:27 ` [PATCH 4/8] hw/arm/fsl-imx31: " Guenter Roeck
` (4 subsequent siblings)
7 siblings, 1 reply; 16+ messages in thread
From: Guenter Roeck @ 2020-03-14 17:27 UTC (permalink / raw)
To: Peter Maydell
Cc: Andrey Smirnov, qemu-devel, Jean-Christophe Dubois, qemu-arm,
Peter Chubb, Guenter Roeck
With this commit, the watchdog on imx25-pdk is fully operational,
including pretimeout support.
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
---
hw/arm/fsl-imx25.c | 10 ++++++++++
include/hw/arm/fsl-imx25.h | 5 +++++
2 files changed, 15 insertions(+)
diff --git a/hw/arm/fsl-imx25.c b/hw/arm/fsl-imx25.c
index a3f829f436..7d5aab562d 100644
--- a/hw/arm/fsl-imx25.c
+++ b/hw/arm/fsl-imx25.c
@@ -87,6 +87,7 @@ static void fsl_imx25_init(Object *obj)
TYPE_CHIPIDEA);
}
+ sysbus_init_child_obj(obj, "wdt", &s->wdt, sizeof(s->wdt), TYPE_IMX2_WDT);
}
static void fsl_imx25_realize(DeviceState *dev, Error **errp)
@@ -302,6 +303,15 @@ static void fsl_imx25_realize(DeviceState *dev, Error **errp)
usb_table[i].irq));
}
+ /* Watchdog */
+ object_property_set_bool(OBJECT(&s->wdt), true, "pretimeout-support",
+ &error_abort);
+ object_property_set_bool(OBJECT(&s->wdt), true, "realized", &error_abort);
+ sysbus_mmio_map(SYS_BUS_DEVICE(&s->wdt), 0, FSL_IMX25_WDT_ADDR);
+ sysbus_connect_irq(SYS_BUS_DEVICE(&s->wdt), 0,
+ qdev_get_gpio_in(DEVICE(&s->avic),
+ FSL_IMX25_WDT_IRQ));
+
/* initialize 2 x 16 KB ROM */
memory_region_init_rom(&s->rom[0], NULL,
"imx25.rom0", FSL_IMX25_ROM0_SIZE, &err);
diff --git a/include/hw/arm/fsl-imx25.h b/include/hw/arm/fsl-imx25.h
index 5e196bbf05..9e228dacea 100644
--- a/include/hw/arm/fsl-imx25.h
+++ b/include/hw/arm/fsl-imx25.h
@@ -29,6 +29,7 @@
#include "hw/gpio/imx_gpio.h"
#include "hw/sd/sdhci.h"
#include "hw/usb/chipidea.h"
+#include "hw/watchdog/wdt_imx2.h"
#include "exec/memory.h"
#include "target/arm/cpu.h"
@@ -60,6 +61,7 @@ typedef struct FslIMX25State {
IMXGPIOState gpio[FSL_IMX25_NUM_GPIOS];
SDHCIState esdhc[FSL_IMX25_NUM_ESDHCS];
ChipideaState usb[FSL_IMX25_NUM_USBS];
+ IMX2WdtState wdt;
MemoryRegion rom[2];
MemoryRegion iram;
MemoryRegion iram_alias;
@@ -229,6 +231,8 @@ typedef struct FslIMX25State {
#define FSL_IMX25_GPIO1_SIZE 0x4000
#define FSL_IMX25_GPIO2_ADDR 0x53FD0000
#define FSL_IMX25_GPIO2_SIZE 0x4000
+#define FSL_IMX25_WDT_ADDR 0x53FDC000
+#define FSL_IMX25_WDT_SIZE 0x4000
#define FSL_IMX25_USB1_ADDR 0x53FF4000
#define FSL_IMX25_USB1_SIZE 0x0200
#define FSL_IMX25_USB2_ADDR 0x53FF4400
@@ -268,5 +272,6 @@ typedef struct FslIMX25State {
#define FSL_IMX25_ESDHC2_IRQ 8
#define FSL_IMX25_USB1_IRQ 37
#define FSL_IMX25_USB2_IRQ 35
+#define FSL_IMX25_WDT_IRQ 55
#endif /* FSL_IMX25_H */
--
2.17.1
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [PATCH 4/8] hw/arm/fsl-imx31: Wire up watchdog
2020-03-14 17:27 [PATCH 0/8] hw/arm: Implement i.MX watchdog support Guenter Roeck
` (2 preceding siblings ...)
2020-03-14 17:27 ` [PATCH 3/8] hw/arm/fsl-imx25: Wire up watchdog Guenter Roeck
@ 2020-03-14 17:27 ` Guenter Roeck
2020-03-14 21:50 ` Philippe Mathieu-Daudé
2020-03-14 17:27 ` [PATCH 5/8] hw/arm/fsl-imx6: Connect watchdog interrupts Guenter Roeck
` (3 subsequent siblings)
7 siblings, 1 reply; 16+ messages in thread
From: Guenter Roeck @ 2020-03-14 17:27 UTC (permalink / raw)
To: Peter Maydell
Cc: Andrey Smirnov, qemu-devel, Jean-Christophe Dubois, qemu-arm,
Peter Chubb, Guenter Roeck
With this patch, the watchdog on i.MX31 emulations is fully operational.
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
---
hw/arm/fsl-imx31.c | 6 ++++++
include/hw/arm/fsl-imx31.h | 4 ++++
2 files changed, 10 insertions(+)
diff --git a/hw/arm/fsl-imx31.c b/hw/arm/fsl-imx31.c
index 55e90d104b..cec7d0dd1b 100644
--- a/hw/arm/fsl-imx31.c
+++ b/hw/arm/fsl-imx31.c
@@ -63,6 +63,8 @@ static void fsl_imx31_init(Object *obj)
sysbus_init_child_obj(obj, "gpio[*]", &s->gpio[i], sizeof(s->gpio[i]),
TYPE_IMX_GPIO);
}
+
+ sysbus_init_child_obj(obj, "wdt", &s->wdt, sizeof(s->wdt), TYPE_IMX2_WDT);
}
static void fsl_imx31_realize(DeviceState *dev, Error **errp)
@@ -205,6 +207,10 @@ static void fsl_imx31_realize(DeviceState *dev, Error **errp)
gpio_table[i].irq));
}
+ /* Watchdog */
+ object_property_set_bool(OBJECT(&s->wdt), true, "realized", &error_abort);
+ sysbus_mmio_map(SYS_BUS_DEVICE(&s->wdt), 0, FSL_IMX31_WDT_ADDR);
+
/* On a real system, the first 16k is a `secure boot rom' */
memory_region_init_rom(&s->secure_rom, NULL, "imx31.secure_rom",
FSL_IMX31_SECURE_ROM_SIZE, &err);
diff --git a/include/hw/arm/fsl-imx31.h b/include/hw/arm/fsl-imx31.h
index ac5ca9826a..dd8561b309 100644
--- a/include/hw/arm/fsl-imx31.h
+++ b/include/hw/arm/fsl-imx31.h
@@ -25,6 +25,7 @@
#include "hw/timer/imx_epit.h"
#include "hw/i2c/imx_i2c.h"
#include "hw/gpio/imx_gpio.h"
+#include "hw/watchdog/wdt_imx2.h"
#include "exec/memory.h"
#include "target/arm/cpu.h"
@@ -49,6 +50,7 @@ typedef struct FslIMX31State {
IMXEPITState epit[FSL_IMX31_NUM_EPITS];
IMXI2CState i2c[FSL_IMX31_NUM_I2CS];
IMXGPIOState gpio[FSL_IMX31_NUM_GPIOS];
+ IMX2WdtState wdt;
MemoryRegion secure_rom;
MemoryRegion rom;
MemoryRegion iram;
@@ -87,6 +89,8 @@ typedef struct FslIMX31State {
#define FSL_IMX31_GPIO1_SIZE 0x4000
#define FSL_IMX31_GPIO2_ADDR 0x53FD0000
#define FSL_IMX31_GPIO2_SIZE 0x4000
+#define FSL_IMX31_WDT_ADDR 0x53FDC000
+#define FSL_IMX31_WDT_SIZE 0x4000
#define FSL_IMX31_AVIC_ADDR 0x68000000
#define FSL_IMX31_AVIC_SIZE 0x100
#define FSL_IMX31_SDRAM0_ADDR 0x80000000
--
2.17.1
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [PATCH 5/8] hw/arm/fsl-imx6: Connect watchdog interrupts
2020-03-14 17:27 [PATCH 0/8] hw/arm: Implement i.MX watchdog support Guenter Roeck
` (3 preceding siblings ...)
2020-03-14 17:27 ` [PATCH 4/8] hw/arm/fsl-imx31: " Guenter Roeck
@ 2020-03-14 17:27 ` Guenter Roeck
2020-03-14 17:27 ` [PATCH 6/8] hw/arm/fsl-imx6ul: " Guenter Roeck
` (2 subsequent siblings)
7 siblings, 0 replies; 16+ messages in thread
From: Guenter Roeck @ 2020-03-14 17:27 UTC (permalink / raw)
To: Peter Maydell
Cc: Andrey Smirnov, qemu-devel, Jean-Christophe Dubois, qemu-arm,
Peter Chubb, Guenter Roeck
With this patch applied, the watchdog in the sabrelite emulation
is fully operational, including pretimeout support.
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
---
hw/arm/fsl-imx6.c | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/hw/arm/fsl-imx6.c b/hw/arm/fsl-imx6.c
index ecc62855f2..b266d40881 100644
--- a/hw/arm/fsl-imx6.c
+++ b/hw/arm/fsl-imx6.c
@@ -397,11 +397,20 @@ static void fsl_imx6_realize(DeviceState *dev, Error **errp)
FSL_IMX6_WDOG1_ADDR,
FSL_IMX6_WDOG2_ADDR,
};
+ static const int FSL_IMX6_WDOGn_IRQ[FSL_IMX6_NUM_WDTS] = {
+ FSL_IMX6_WDOG1_IRQ,
+ FSL_IMX6_WDOG2_IRQ,
+ };
+ object_property_set_bool(OBJECT(&s->wdt[i]), true, "pretimeout-support",
+ &error_abort);
object_property_set_bool(OBJECT(&s->wdt[i]), true, "realized",
&error_abort);
sysbus_mmio_map(SYS_BUS_DEVICE(&s->wdt[i]), 0, FSL_IMX6_WDOGn_ADDR[i]);
+ sysbus_connect_irq(SYS_BUS_DEVICE(&s->wdt[i]), 0,
+ qdev_get_gpio_in(DEVICE(&s->a9mpcore),
+ FSL_IMX6_WDOGn_IRQ[i]));
}
/* ROM memory */
--
2.17.1
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [PATCH 6/8] hw/arm/fsl-imx6ul: Connect watchdog interrupts
2020-03-14 17:27 [PATCH 0/8] hw/arm: Implement i.MX watchdog support Guenter Roeck
` (4 preceding siblings ...)
2020-03-14 17:27 ` [PATCH 5/8] hw/arm/fsl-imx6: Connect watchdog interrupts Guenter Roeck
@ 2020-03-14 17:27 ` Guenter Roeck
2020-03-14 17:27 ` [PATCH 7/8] hw/arm/fsl-imx7: Instantiate various unimplemented devices Guenter Roeck
2020-03-14 17:27 ` [PATCH 8/8] hw/arm/fsl-imx7: Connect watchdog interrupts Guenter Roeck
7 siblings, 0 replies; 16+ messages in thread
From: Guenter Roeck @ 2020-03-14 17:27 UTC (permalink / raw)
To: Peter Maydell
Cc: Andrey Smirnov, qemu-devel, Jean-Christophe Dubois, qemu-arm,
Peter Chubb, Guenter Roeck
With this commit, the watchdog on mcimx6ul-evk is fully operational,
including pretimeout support.
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
---
hw/arm/fsl-imx6ul.c | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/hw/arm/fsl-imx6ul.c b/hw/arm/fsl-imx6ul.c
index c405b68d1d..8d3b91dd85 100644
--- a/hw/arm/fsl-imx6ul.c
+++ b/hw/arm/fsl-imx6ul.c
@@ -496,12 +496,22 @@ static void fsl_imx6ul_realize(DeviceState *dev, Error **errp)
FSL_IMX6UL_WDOG2_ADDR,
FSL_IMX6UL_WDOG3_ADDR,
};
+ static const int FSL_IMX6UL_WDOGn_IRQ[FSL_IMX6UL_NUM_WDTS] = {
+ FSL_IMX6UL_WDOG1_IRQ,
+ FSL_IMX6UL_WDOG2_IRQ,
+ FSL_IMX6UL_WDOG3_IRQ,
+ };
+ object_property_set_bool(OBJECT(&s->wdt[i]), true, "pretimeout-support",
+ &error_abort);
object_property_set_bool(OBJECT(&s->wdt[i]), true, "realized",
&error_abort);
sysbus_mmio_map(SYS_BUS_DEVICE(&s->wdt[i]), 0,
FSL_IMX6UL_WDOGn_ADDR[i]);
+ sysbus_connect_irq(SYS_BUS_DEVICE(&s->wdt[i]), 0,
+ qdev_get_gpio_in(DEVICE(&s->a7mpcore),
+ FSL_IMX6UL_WDOGn_IRQ[i]));
}
/*
--
2.17.1
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [PATCH 7/8] hw/arm/fsl-imx7: Instantiate various unimplemented devices
2020-03-14 17:27 [PATCH 0/8] hw/arm: Implement i.MX watchdog support Guenter Roeck
` (5 preceding siblings ...)
2020-03-14 17:27 ` [PATCH 6/8] hw/arm/fsl-imx6ul: " Guenter Roeck
@ 2020-03-14 17:27 ` Guenter Roeck
2020-03-14 17:27 ` [PATCH 8/8] hw/arm/fsl-imx7: Connect watchdog interrupts Guenter Roeck
7 siblings, 0 replies; 16+ messages in thread
From: Guenter Roeck @ 2020-03-14 17:27 UTC (permalink / raw)
To: Peter Maydell
Cc: Andrey Smirnov, qemu-devel, Jean-Christophe Dubois, qemu-arm,
Peter Chubb, Guenter Roeck
Instantiating PWM, CAN, CAAM, and OCOTP devices is necessary to avoid
crashes when booting mainline Linux.
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
---
hw/arm/fsl-imx7.c | 24 ++++++++++++++++++++++++
include/hw/arm/fsl-imx7.h | 16 ++++++++++++++++
2 files changed, 40 insertions(+)
diff --git a/hw/arm/fsl-imx7.c b/hw/arm/fsl-imx7.c
index 119b281a50..29382776b2 100644
--- a/hw/arm/fsl-imx7.c
+++ b/hw/arm/fsl-imx7.c
@@ -459,6 +459,30 @@ static void fsl_imx7_realize(DeviceState *dev, Error **errp)
*/
create_unimplemented_device("sdma", FSL_IMX7_SDMA_ADDR, FSL_IMX7_SDMA_SIZE);
+ /*
+ * CAAM
+ */
+ create_unimplemented_device("caam", FSL_IMX7_CAAM_ADDR, FSL_IMX7_CAAM_SIZE);
+
+ /*
+ * PWM
+ */
+ create_unimplemented_device("pwm1", FSL_IMX7_PWM1_ADDR, FSL_IMX7_PWMn_SIZE);
+ create_unimplemented_device("pwm2", FSL_IMX7_PWM2_ADDR, FSL_IMX7_PWMn_SIZE);
+ create_unimplemented_device("pwm3", FSL_IMX7_PWM3_ADDR, FSL_IMX7_PWMn_SIZE);
+ create_unimplemented_device("pwm4", FSL_IMX7_PWM4_ADDR, FSL_IMX7_PWMn_SIZE);
+
+ /*
+ * CAN
+ */
+ create_unimplemented_device("can1", FSL_IMX7_CAN1_ADDR, FSL_IMX7_CANn_SIZE);
+ create_unimplemented_device("can2", FSL_IMX7_CAN2_ADDR, FSL_IMX7_CANn_SIZE);
+
+ /*
+ * OCOTP
+ */
+ create_unimplemented_device("octop", FSL_IMX7_OCOTP_ADDR,
+ FSL_IMX7_OCOTP_SIZE);
object_property_set_bool(OBJECT(&s->gpr), true, "realized",
&error_abort);
diff --git a/include/hw/arm/fsl-imx7.h b/include/hw/arm/fsl-imx7.h
index 3a0041c4c2..47826da2b7 100644
--- a/include/hw/arm/fsl-imx7.h
+++ b/include/hw/arm/fsl-imx7.h
@@ -113,6 +113,9 @@ enum FslIMX7MemoryMap {
FSL_IMX7_IOMUXC_GPR_ADDR = 0x30340000,
FSL_IMX7_IOMUXCn_SIZE = 0x1000,
+ FSL_IMX7_OCOTP_ADDR = 0x30350000,
+ FSL_IMX7_OCOTP_SIZE = 0x10000,
+
FSL_IMX7_ANALOG_ADDR = 0x30360000,
FSL_IMX7_SNVS_ADDR = 0x30370000,
FSL_IMX7_CCM_ADDR = 0x30380000,
@@ -124,11 +127,24 @@ enum FslIMX7MemoryMap {
FSL_IMX7_ADC2_ADDR = 0x30620000,
FSL_IMX7_ADCn_SIZE = 0x1000,
+ FSL_IMX7_PWM1_ADDR = 0x30660000,
+ FSL_IMX7_PWM2_ADDR = 0x30670000,
+ FSL_IMX7_PWM3_ADDR = 0x30680000,
+ FSL_IMX7_PWM4_ADDR = 0x30690000,
+ FSL_IMX7_PWMn_SIZE = 0x10000,
+
FSL_IMX7_PCIE_PHY_ADDR = 0x306D0000,
FSL_IMX7_PCIE_PHY_SIZE = 0x10000,
FSL_IMX7_GPC_ADDR = 0x303A0000,
+ FSL_IMX7_CAAM_ADDR = 0x30900000,
+ FSL_IMX7_CAAM_SIZE = 0x40000,
+
+ FSL_IMX7_CAN1_ADDR = 0x30A00000,
+ FSL_IMX7_CAN2_ADDR = 0x30A10000,
+ FSL_IMX7_CANn_SIZE = 0x10000,
+
FSL_IMX7_I2C1_ADDR = 0x30A20000,
FSL_IMX7_I2C2_ADDR = 0x30A30000,
FSL_IMX7_I2C3_ADDR = 0x30A40000,
--
2.17.1
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [PATCH 8/8] hw/arm/fsl-imx7: Connect watchdog interrupts
2020-03-14 17:27 [PATCH 0/8] hw/arm: Implement i.MX watchdog support Guenter Roeck
` (6 preceding siblings ...)
2020-03-14 17:27 ` [PATCH 7/8] hw/arm/fsl-imx7: Instantiate various unimplemented devices Guenter Roeck
@ 2020-03-14 17:27 ` Guenter Roeck
7 siblings, 0 replies; 16+ messages in thread
From: Guenter Roeck @ 2020-03-14 17:27 UTC (permalink / raw)
To: Peter Maydell
Cc: Andrey Smirnov, qemu-devel, Jean-Christophe Dubois, qemu-arm,
Peter Chubb, Guenter Roeck
i.MX7 supports watchdog pretimeout interupts. With this commit,
the watchdog in mcimx7d-sabre is fully operational, including
pretimeout support.
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
---
hw/arm/fsl-imx7.c | 11 +++++++++++
include/hw/arm/fsl-imx7.h | 5 +++++
2 files changed, 16 insertions(+)
diff --git a/hw/arm/fsl-imx7.c b/hw/arm/fsl-imx7.c
index 29382776b2..6c539c8b23 100644
--- a/hw/arm/fsl-imx7.c
+++ b/hw/arm/fsl-imx7.c
@@ -447,11 +447,22 @@ static void fsl_imx7_realize(DeviceState *dev, Error **errp)
FSL_IMX7_WDOG3_ADDR,
FSL_IMX7_WDOG4_ADDR,
};
+ static const int FSL_IMX7_WDOGn_IRQ[FSL_IMX7_NUM_WDTS] = {
+ FSL_IMX7_WDOG1_IRQ,
+ FSL_IMX7_WDOG2_IRQ,
+ FSL_IMX7_WDOG3_IRQ,
+ FSL_IMX7_WDOG4_IRQ,
+ };
+ object_property_set_bool(OBJECT(&s->wdt[i]), true, "pretimeout-support",
+ &error_abort);
object_property_set_bool(OBJECT(&s->wdt[i]), true, "realized",
&error_abort);
sysbus_mmio_map(SYS_BUS_DEVICE(&s->wdt[i]), 0, FSL_IMX7_WDOGn_ADDR[i]);
+ sysbus_connect_irq(SYS_BUS_DEVICE(&s->wdt[i]), 0,
+ qdev_get_gpio_in(DEVICE(&s->a7mpcore),
+ FSL_IMX7_WDOGn_IRQ[i]));
}
/*
diff --git a/include/hw/arm/fsl-imx7.h b/include/hw/arm/fsl-imx7.h
index 47826da2b7..da977f9ffb 100644
--- a/include/hw/arm/fsl-imx7.h
+++ b/include/hw/arm/fsl-imx7.h
@@ -228,6 +228,11 @@ enum FslIMX7IRQs {
FSL_IMX7_USB2_IRQ = 42,
FSL_IMX7_USB3_IRQ = 40,
+ FSL_IMX7_WDOG1_IRQ = 78,
+ FSL_IMX7_WDOG2_IRQ = 79,
+ FSL_IMX7_WDOG3_IRQ = 10,
+ FSL_IMX7_WDOG4_IRQ = 109,
+
FSL_IMX7_PCI_INTA_IRQ = 125,
FSL_IMX7_PCI_INTB_IRQ = 124,
FSL_IMX7_PCI_INTC_IRQ = 123,
--
2.17.1
^ permalink raw reply related [flat|nested] 16+ messages in thread
* Re: [PATCH 1/8] hw: Move i.MX watchdog driver to hw/watchdog
2020-03-14 17:27 ` [PATCH 1/8] hw: Move i.MX watchdog driver to hw/watchdog Guenter Roeck
@ 2020-03-14 21:43 ` Philippe Mathieu-Daudé
2020-03-14 21:46 ` Philippe Mathieu-Daudé
0 siblings, 1 reply; 16+ messages in thread
From: Philippe Mathieu-Daudé @ 2020-03-14 21:43 UTC (permalink / raw)
To: Guenter Roeck, Peter Maydell
Cc: Andrey Smirnov, qemu-arm, Peter Chubb, qemu-devel,
Jean-Christophe Dubois
Hi Guenter,
On 3/14/20 6:27 PM, Guenter Roeck wrote:
> In preparation for a full implementation, move i.MX watchdog driver
> from hw/misc to hw/watchdog. While at it, add the watchdog files
> to MAINTAINERS.
>
> Signed-off-by: Guenter Roeck <linux@roeck-us.net>
> ---
> MAINTAINERS | 2 ++
> hw/misc/Makefile.objs | 1 -
> hw/watchdog/Kconfig | 5 +++++
> hw/watchdog/Makefile.objs | 1 +
> hw/{misc/imx2_wdt.c => watchdog/wdt_imx2.c} | 2 +-
> include/hw/arm/fsl-imx6.h | 2 +-
> include/hw/arm/fsl-imx6ul.h | 2 +-
> include/hw/arm/fsl-imx7.h | 2 +-
> include/hw/{misc/imx2_wdt.h => watchdog/wdt_imx2.h} | 0
> 9 files changed, 12 insertions(+), 5 deletions(-)
> rename hw/{misc/imx2_wdt.c => watchdog/wdt_imx2.c} (98%)
> rename include/hw/{misc/imx2_wdt.h => watchdog/wdt_imx2.h} (100%)
>
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 32867bc636..d1197014e8 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -603,8 +603,10 @@ S: Odd Fixes
> F: hw/arm/fsl-imx25.c
> F: hw/arm/imx25_pdk.c
> F: hw/misc/imx25_ccm.c
> +F: hw/watchdog/wdt_imx2.c
> F: include/hw/arm/fsl-imx25.h
> F: include/hw/misc/imx25_ccm.h
> +F: include/hw/watchdog/wdt_imx2.h
>
> i.MX31 (kzm)
> M: Peter Chubb <peter.chubb@nicta.com.au>
> diff --git a/hw/misc/Makefile.objs b/hw/misc/Makefile.objs
> index 68aae2eabb..b25181b711 100644
> --- a/hw/misc/Makefile.objs
> +++ b/hw/misc/Makefile.objs
> @@ -44,7 +44,6 @@ common-obj-$(CONFIG_IMX) += imx6_ccm.o
> common-obj-$(CONFIG_IMX) += imx6ul_ccm.o
> obj-$(CONFIG_IMX) += imx6_src.o
> common-obj-$(CONFIG_IMX) += imx7_ccm.o
> -common-obj-$(CONFIG_IMX) += imx2_wdt.o
> common-obj-$(CONFIG_IMX) += imx7_snvs.o
> common-obj-$(CONFIG_IMX) += imx7_gpr.o
> common-obj-$(CONFIG_IMX) += imx_rngc.o
> diff --git a/hw/watchdog/Kconfig b/hw/watchdog/Kconfig
> index 2118d897c9..2c225b4b17 100644
> --- a/hw/watchdog/Kconfig
> +++ b/hw/watchdog/Kconfig
> @@ -14,3 +14,8 @@ config WDT_IB700
>
> config WDT_DIAG288
> bool
> +
> +config WDT_IMX2
> + bool
> + default y
> + depends on IMX
- it does not depend of IMX (you could use it in another SoC)
- since it is not user-creatable, it is pointless as a default device.
Instead, select it in each iMX SoC:
-- >8 --
diff --git a/hw/arm/Kconfig b/hw/arm/Kconfig
index e5a876c8d1..cdb01c4e03 100644
--- a/hw/arm/Kconfig
+++ b/hw/arm/Kconfig
@@ -358,6 +358,7 @@ config FSL_IMX25
select IMX
select IMX_FEC
select IMX_I2C
+ select WDT_IMX2
select DS1338
config FSL_IMX31
@@ -365,6 +366,7 @@ config FSL_IMX31
select SERIAL
select IMX
select IMX_I2C
+ select WDT_IMX2
select LAN9118
config FSL_IMX6
@@ -373,6 +375,7 @@ config FSL_IMX6
select IMX
select IMX_FEC
select IMX_I2C
+ select WDT_IMX2
select SDHCI
---
With this hunk amended (and removing "default y" and "depends on IMX"):
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
> diff --git a/hw/watchdog/Makefile.objs b/hw/watchdog/Makefile.objs
> index 3f536d1cad..dd9b37f642 100644
> --- a/hw/watchdog/Makefile.objs
> +++ b/hw/watchdog/Makefile.objs
> @@ -4,3 +4,4 @@ common-obj-$(CONFIG_WDT_IB6300ESB) += wdt_i6300esb.o
> common-obj-$(CONFIG_WDT_IB700) += wdt_ib700.o
> common-obj-$(CONFIG_WDT_DIAG288) += wdt_diag288.o
> common-obj-$(CONFIG_ASPEED_SOC) += wdt_aspeed.o
> +common-obj-$(CONFIG_WDT_IMX) += wdt_imx2.o
> diff --git a/hw/misc/imx2_wdt.c b/hw/watchdog/wdt_imx2.c
> similarity index 98%
> rename from hw/misc/imx2_wdt.c
> rename to hw/watchdog/wdt_imx2.c
> index 2aedfe803a..ad1ef02e9e 100644
> --- a/hw/misc/imx2_wdt.c
> +++ b/hw/watchdog/wdt_imx2.c
> @@ -14,7 +14,7 @@
> #include "qemu/module.h"
> #include "sysemu/watchdog.h"
>
> -#include "hw/misc/imx2_wdt.h"
> +#include "hw/watchdog/wdt_imx2.h"
>
> #define IMX2_WDT_WCR_WDA BIT(5) /* -> External Reset WDOG_B */
> #define IMX2_WDT_WCR_SRS BIT(4) /* -> Software Reset Signal */
> diff --git a/include/hw/arm/fsl-imx6.h b/include/hw/arm/fsl-imx6.h
> index 60eadccb42..5b02dc1f4b 100644
> --- a/include/hw/arm/fsl-imx6.h
> +++ b/include/hw/arm/fsl-imx6.h
> @@ -21,7 +21,7 @@
> #include "hw/cpu/a9mpcore.h"
> #include "hw/misc/imx6_ccm.h"
> #include "hw/misc/imx6_src.h"
> -#include "hw/misc/imx2_wdt.h"
> +#include "hw/watchdog/wdt_imx2.h"
> #include "hw/char/imx_serial.h"
> #include "hw/timer/imx_gpt.h"
> #include "hw/timer/imx_epit.h"
> diff --git a/include/hw/arm/fsl-imx6ul.h b/include/hw/arm/fsl-imx6ul.h
> index eda389aec7..91c746918a 100644
> --- a/include/hw/arm/fsl-imx6ul.h
> +++ b/include/hw/arm/fsl-imx6ul.h
> @@ -24,7 +24,7 @@
> #include "hw/misc/imx7_snvs.h"
> #include "hw/misc/imx7_gpr.h"
> #include "hw/intc/imx_gpcv2.h"
> -#include "hw/misc/imx2_wdt.h"
> +#include "hw/watchdog/wdt_imx2.h"
> #include "hw/gpio/imx_gpio.h"
> #include "hw/char/imx_serial.h"
> #include "hw/timer/imx_gpt.h"
> diff --git a/include/hw/arm/fsl-imx7.h b/include/hw/arm/fsl-imx7.h
> index 706aef2e7e..3a0041c4c2 100644
> --- a/include/hw/arm/fsl-imx7.h
> +++ b/include/hw/arm/fsl-imx7.h
> @@ -26,7 +26,7 @@
> #include "hw/misc/imx7_snvs.h"
> #include "hw/misc/imx7_gpr.h"
> #include "hw/misc/imx6_src.h"
> -#include "hw/misc/imx2_wdt.h"
> +#include "hw/watchdog/wdt_imx2.h"
> #include "hw/gpio/imx_gpio.h"
> #include "hw/char/imx_serial.h"
> #include "hw/timer/imx_gpt.h"
> diff --git a/include/hw/misc/imx2_wdt.h b/include/hw/watchdog/wdt_imx2.h
> similarity index 100%
> rename from include/hw/misc/imx2_wdt.h
> rename to include/hw/watchdog/wdt_imx2.h
>
^ permalink raw reply related [flat|nested] 16+ messages in thread
* Re: [PATCH 1/8] hw: Move i.MX watchdog driver to hw/watchdog
2020-03-14 21:43 ` Philippe Mathieu-Daudé
@ 2020-03-14 21:46 ` Philippe Mathieu-Daudé
2020-03-14 22:11 ` Guenter Roeck
0 siblings, 1 reply; 16+ messages in thread
From: Philippe Mathieu-Daudé @ 2020-03-14 21:46 UTC (permalink / raw)
To: Guenter Roeck, Peter Maydell
Cc: Andrey Smirnov, qemu-arm, Peter Chubb, qemu-devel,
Jean-Christophe Dubois
On 3/14/20 10:43 PM, Philippe Mathieu-Daudé wrote:
> Hi Guenter,
>
> On 3/14/20 6:27 PM, Guenter Roeck wrote:
>> In preparation for a full implementation, move i.MX watchdog driver
>> from hw/misc to hw/watchdog. While at it, add the watchdog files
>> to MAINTAINERS.
>>
>> Signed-off-by: Guenter Roeck <linux@roeck-us.net>
>> ---
>> MAINTAINERS | 2 ++
>> hw/misc/Makefile.objs | 1 -
>> hw/watchdog/Kconfig | 5 +++++
>> hw/watchdog/Makefile.objs | 1 +
>> hw/{misc/imx2_wdt.c => watchdog/wdt_imx2.c} | 2 +-
>> include/hw/arm/fsl-imx6.h | 2 +-
>> include/hw/arm/fsl-imx6ul.h | 2 +-
>> include/hw/arm/fsl-imx7.h | 2 +-
>> include/hw/{misc/imx2_wdt.h => watchdog/wdt_imx2.h} | 0
>> 9 files changed, 12 insertions(+), 5 deletions(-)
>> rename hw/{misc/imx2_wdt.c => watchdog/wdt_imx2.c} (98%)
>> rename include/hw/{misc/imx2_wdt.h => watchdog/wdt_imx2.h} (100%)
>>
>> diff --git a/MAINTAINERS b/MAINTAINERS
>> index 32867bc636..d1197014e8 100644
>> --- a/MAINTAINERS
>> +++ b/MAINTAINERS
>> @@ -603,8 +603,10 @@ S: Odd Fixes
>> F: hw/arm/fsl-imx25.c
>> F: hw/arm/imx25_pdk.c
>> F: hw/misc/imx25_ccm.c
>> +F: hw/watchdog/wdt_imx2.c
>> F: include/hw/arm/fsl-imx25.h
>> F: include/hw/misc/imx25_ccm.h
>> +F: include/hw/watchdog/wdt_imx2.h
>> i.MX31 (kzm)
>> M: Peter Chubb <peter.chubb@nicta.com.au>
>> diff --git a/hw/misc/Makefile.objs b/hw/misc/Makefile.objs
>> index 68aae2eabb..b25181b711 100644
>> --- a/hw/misc/Makefile.objs
>> +++ b/hw/misc/Makefile.objs
>> @@ -44,7 +44,6 @@ common-obj-$(CONFIG_IMX) += imx6_ccm.o
>> common-obj-$(CONFIG_IMX) += imx6ul_ccm.o
>> obj-$(CONFIG_IMX) += imx6_src.o
>> common-obj-$(CONFIG_IMX) += imx7_ccm.o
>> -common-obj-$(CONFIG_IMX) += imx2_wdt.o
>> common-obj-$(CONFIG_IMX) += imx7_snvs.o
>> common-obj-$(CONFIG_IMX) += imx7_gpr.o
>> common-obj-$(CONFIG_IMX) += imx_rngc.o
>> diff --git a/hw/watchdog/Kconfig b/hw/watchdog/Kconfig
>> index 2118d897c9..2c225b4b17 100644
>> --- a/hw/watchdog/Kconfig
>> +++ b/hw/watchdog/Kconfig
>> @@ -14,3 +14,8 @@ config WDT_IB700
>> config WDT_DIAG288
>> bool
>> +
>> +config WDT_IMX2
>> + bool
>> + default y
>> + depends on IMX
>
> - it does not depend of IMX (you could use it in another SoC)
> - since it is not user-creatable, it is pointless as a default device.
>
> Instead, select it in each iMX SoC:
>
> -- >8 --
> diff --git a/hw/arm/Kconfig b/hw/arm/Kconfig
> index e5a876c8d1..cdb01c4e03 100644
> --- a/hw/arm/Kconfig
> +++ b/hw/arm/Kconfig
> @@ -358,6 +358,7 @@ config FSL_IMX25
> select IMX
> select IMX_FEC
> select IMX_I2C
> + select WDT_IMX2
> select DS1338
>
> config FSL_IMX31
> @@ -365,6 +366,7 @@ config FSL_IMX31
> select SERIAL
> select IMX
> select IMX_I2C
> + select WDT_IMX2
> select LAN9118
>
> config FSL_IMX6
> @@ -373,6 +375,7 @@ config FSL_IMX6
> select IMX
> select IMX_FEC
> select IMX_I2C
> + select WDT_IMX2
> select SDHCI
>
> ---
Corrected hunk:
-- >8 --
diff --git a/hw/arm/Kconfig b/hw/arm/Kconfig
index e5a876c8d1..c662d5f1e0 100644
--- a/hw/arm/Kconfig
+++ b/hw/arm/Kconfig
@@ -373,6 +373,7 @@ config FSL_IMX6
select IMX
select IMX_FEC
select IMX_I2C
+ select WDT_IMX2
select SDHCI
config ASPEED_SOC
@@ -410,6 +411,7 @@ config FSL_IMX7
select IMX
select IMX_FEC
select IMX_I2C
+ select WDT_IMX2
select PCI_EXPRESS_DESIGNWARE
select SDHCI
select UNIMP
@@ -423,6 +425,7 @@ config FSL_IMX6UL
select IMX
select IMX_FEC
select IMX_I2C
+ select WDT_IMX2
select SDHCI
select UNIMP
---
>
> With this hunk amended (and removing "default y" and "depends on IMX"):
> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
>
>> diff --git a/hw/watchdog/Makefile.objs b/hw/watchdog/Makefile.objs
>> index 3f536d1cad..dd9b37f642 100644
>> --- a/hw/watchdog/Makefile.objs
>> +++ b/hw/watchdog/Makefile.objs
>> @@ -4,3 +4,4 @@ common-obj-$(CONFIG_WDT_IB6300ESB) += wdt_i6300esb.o
>> common-obj-$(CONFIG_WDT_IB700) += wdt_ib700.o
>> common-obj-$(CONFIG_WDT_DIAG288) += wdt_diag288.o
>> common-obj-$(CONFIG_ASPEED_SOC) += wdt_aspeed.o
>> +common-obj-$(CONFIG_WDT_IMX) += wdt_imx2.o
>> diff --git a/hw/misc/imx2_wdt.c b/hw/watchdog/wdt_imx2.c
>> similarity index 98%
>> rename from hw/misc/imx2_wdt.c
>> rename to hw/watchdog/wdt_imx2.c
>> index 2aedfe803a..ad1ef02e9e 100644
>> --- a/hw/misc/imx2_wdt.c
>> +++ b/hw/watchdog/wdt_imx2.c
>> @@ -14,7 +14,7 @@
>> #include "qemu/module.h"
>> #include "sysemu/watchdog.h"
>> -#include "hw/misc/imx2_wdt.h"
>> +#include "hw/watchdog/wdt_imx2.h"
>> #define IMX2_WDT_WCR_WDA BIT(5) /* -> External Reset WDOG_B */
>> #define IMX2_WDT_WCR_SRS BIT(4) /* -> Software Reset Signal */
>> diff --git a/include/hw/arm/fsl-imx6.h b/include/hw/arm/fsl-imx6.h
>> index 60eadccb42..5b02dc1f4b 100644
>> --- a/include/hw/arm/fsl-imx6.h
>> +++ b/include/hw/arm/fsl-imx6.h
>> @@ -21,7 +21,7 @@
>> #include "hw/cpu/a9mpcore.h"
>> #include "hw/misc/imx6_ccm.h"
>> #include "hw/misc/imx6_src.h"
>> -#include "hw/misc/imx2_wdt.h"
>> +#include "hw/watchdog/wdt_imx2.h"
>> #include "hw/char/imx_serial.h"
>> #include "hw/timer/imx_gpt.h"
>> #include "hw/timer/imx_epit.h"
>> diff --git a/include/hw/arm/fsl-imx6ul.h b/include/hw/arm/fsl-imx6ul.h
>> index eda389aec7..91c746918a 100644
>> --- a/include/hw/arm/fsl-imx6ul.h
>> +++ b/include/hw/arm/fsl-imx6ul.h
>> @@ -24,7 +24,7 @@
>> #include "hw/misc/imx7_snvs.h"
>> #include "hw/misc/imx7_gpr.h"
>> #include "hw/intc/imx_gpcv2.h"
>> -#include "hw/misc/imx2_wdt.h"
>> +#include "hw/watchdog/wdt_imx2.h"
>> #include "hw/gpio/imx_gpio.h"
>> #include "hw/char/imx_serial.h"
>> #include "hw/timer/imx_gpt.h"
>> diff --git a/include/hw/arm/fsl-imx7.h b/include/hw/arm/fsl-imx7.h
>> index 706aef2e7e..3a0041c4c2 100644
>> --- a/include/hw/arm/fsl-imx7.h
>> +++ b/include/hw/arm/fsl-imx7.h
>> @@ -26,7 +26,7 @@
>> #include "hw/misc/imx7_snvs.h"
>> #include "hw/misc/imx7_gpr.h"
>> #include "hw/misc/imx6_src.h"
>> -#include "hw/misc/imx2_wdt.h"
>> +#include "hw/watchdog/wdt_imx2.h"
>> #include "hw/gpio/imx_gpio.h"
>> #include "hw/char/imx_serial.h"
>> #include "hw/timer/imx_gpt.h"
>> diff --git a/include/hw/misc/imx2_wdt.h b/include/hw/watchdog/wdt_imx2.h
>> similarity index 100%
>> rename from include/hw/misc/imx2_wdt.h
>> rename to include/hw/watchdog/wdt_imx2.h
>>
^ permalink raw reply related [flat|nested] 16+ messages in thread
* Re: [PATCH 3/8] hw/arm/fsl-imx25: Wire up watchdog
2020-03-14 17:27 ` [PATCH 3/8] hw/arm/fsl-imx25: Wire up watchdog Guenter Roeck
@ 2020-03-14 21:48 ` Philippe Mathieu-Daudé
2020-03-14 22:12 ` Guenter Roeck
0 siblings, 1 reply; 16+ messages in thread
From: Philippe Mathieu-Daudé @ 2020-03-14 21:48 UTC (permalink / raw)
To: Guenter Roeck, Peter Maydell
Cc: Andrey Smirnov, qemu-arm, Peter Chubb, qemu-devel,
Jean-Christophe Dubois
On 3/14/20 6:27 PM, Guenter Roeck wrote:
> With this commit, the watchdog on imx25-pdk is fully operational,
> including pretimeout support.
>
> Signed-off-by: Guenter Roeck <linux@roeck-us.net>
> ---
> hw/arm/fsl-imx25.c | 10 ++++++++++
> include/hw/arm/fsl-imx25.h | 5 +++++
> 2 files changed, 15 insertions(+)
>
> diff --git a/hw/arm/fsl-imx25.c b/hw/arm/fsl-imx25.c
> index a3f829f436..7d5aab562d 100644
> --- a/hw/arm/fsl-imx25.c
> +++ b/hw/arm/fsl-imx25.c
> @@ -87,6 +87,7 @@ static void fsl_imx25_init(Object *obj)
> TYPE_CHIPIDEA);
> }
>
> + sysbus_init_child_obj(obj, "wdt", &s->wdt, sizeof(s->wdt), TYPE_IMX2_WDT);
> }
>
> static void fsl_imx25_realize(DeviceState *dev, Error **errp)
> @@ -302,6 +303,15 @@ static void fsl_imx25_realize(DeviceState *dev, Error **errp)
> usb_table[i].irq));
> }
>
> + /* Watchdog */
> + object_property_set_bool(OBJECT(&s->wdt), true, "pretimeout-support",
> + &error_abort);
> + object_property_set_bool(OBJECT(&s->wdt), true, "realized", &error_abort);
> + sysbus_mmio_map(SYS_BUS_DEVICE(&s->wdt), 0, FSL_IMX25_WDT_ADDR);
> + sysbus_connect_irq(SYS_BUS_DEVICE(&s->wdt), 0,
> + qdev_get_gpio_in(DEVICE(&s->avic),
> + FSL_IMX25_WDT_IRQ));
> +
> /* initialize 2 x 16 KB ROM */
> memory_region_init_rom(&s->rom[0], NULL,
> "imx25.rom0", FSL_IMX25_ROM0_SIZE, &err);
> diff --git a/include/hw/arm/fsl-imx25.h b/include/hw/arm/fsl-imx25.h
> index 5e196bbf05..9e228dacea 100644
> --- a/include/hw/arm/fsl-imx25.h
> +++ b/include/hw/arm/fsl-imx25.h
> @@ -29,6 +29,7 @@
> #include "hw/gpio/imx_gpio.h"
> #include "hw/sd/sdhci.h"
> #include "hw/usb/chipidea.h"
> +#include "hw/watchdog/wdt_imx2.h"
> #include "exec/memory.h"
> #include "target/arm/cpu.h"
>
> @@ -60,6 +61,7 @@ typedef struct FslIMX25State {
> IMXGPIOState gpio[FSL_IMX25_NUM_GPIOS];
> SDHCIState esdhc[FSL_IMX25_NUM_ESDHCS];
> ChipideaState usb[FSL_IMX25_NUM_USBS];
> + IMX2WdtState wdt;
> MemoryRegion rom[2];
> MemoryRegion iram;
> MemoryRegion iram_alias;
> @@ -229,6 +231,8 @@ typedef struct FslIMX25State {
> #define FSL_IMX25_GPIO1_SIZE 0x4000
> #define FSL_IMX25_GPIO2_ADDR 0x53FD0000
> #define FSL_IMX25_GPIO2_SIZE 0x4000
> +#define FSL_IMX25_WDT_ADDR 0x53FDC000
> +#define FSL_IMX25_WDT_SIZE 0x4000
> #define FSL_IMX25_USB1_ADDR 0x53FF4000
> #define FSL_IMX25_USB1_SIZE 0x0200
> #define FSL_IMX25_USB2_ADDR 0x53FF4400
> @@ -268,5 +272,6 @@ typedef struct FslIMX25State {
> #define FSL_IMX25_ESDHC2_IRQ 8
> #define FSL_IMX25_USB1_IRQ 37
> #define FSL_IMX25_USB2_IRQ 35
> +#define FSL_IMX25_WDT_IRQ 55
>
> #endif /* FSL_IMX25_H */
>
Here you also need:
-- >8 --
diff --git a/hw/arm/Kconfig b/hw/arm/Kconfig
index c662d5f1e0..4cf8fa4967 100644
--- a/hw/arm/Kconfig
+++ b/hw/arm/Kconfig
@@ -358,6 +358,7 @@ config FSL_IMX25
select IMX
select IMX_FEC
select IMX_I2C
+ select WDT_IMX2
select DS1338
config FSL_IMX31
---
With it:
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
^ permalink raw reply related [flat|nested] 16+ messages in thread
* Re: [PATCH 4/8] hw/arm/fsl-imx31: Wire up watchdog
2020-03-14 17:27 ` [PATCH 4/8] hw/arm/fsl-imx31: " Guenter Roeck
@ 2020-03-14 21:50 ` Philippe Mathieu-Daudé
2020-03-14 22:12 ` Guenter Roeck
0 siblings, 1 reply; 16+ messages in thread
From: Philippe Mathieu-Daudé @ 2020-03-14 21:50 UTC (permalink / raw)
To: Guenter Roeck, Peter Maydell
Cc: Andrey Smirnov, qemu-arm, Peter Chubb, qemu-devel,
Jean-Christophe Dubois
On 3/14/20 6:27 PM, Guenter Roeck wrote:
> With this patch, the watchdog on i.MX31 emulations is fully operational.
>
> Signed-off-by: Guenter Roeck <linux@roeck-us.net>
> ---
> hw/arm/fsl-imx31.c | 6 ++++++
> include/hw/arm/fsl-imx31.h | 4 ++++
> 2 files changed, 10 insertions(+)
>
> diff --git a/hw/arm/fsl-imx31.c b/hw/arm/fsl-imx31.c
> index 55e90d104b..cec7d0dd1b 100644
> --- a/hw/arm/fsl-imx31.c
> +++ b/hw/arm/fsl-imx31.c
> @@ -63,6 +63,8 @@ static void fsl_imx31_init(Object *obj)
> sysbus_init_child_obj(obj, "gpio[*]", &s->gpio[i], sizeof(s->gpio[i]),
> TYPE_IMX_GPIO);
> }
> +
> + sysbus_init_child_obj(obj, "wdt", &s->wdt, sizeof(s->wdt), TYPE_IMX2_WDT);
> }
>
> static void fsl_imx31_realize(DeviceState *dev, Error **errp)
> @@ -205,6 +207,10 @@ static void fsl_imx31_realize(DeviceState *dev, Error **errp)
> gpio_table[i].irq));
> }
>
> + /* Watchdog */
> + object_property_set_bool(OBJECT(&s->wdt), true, "realized", &error_abort);
> + sysbus_mmio_map(SYS_BUS_DEVICE(&s->wdt), 0, FSL_IMX31_WDT_ADDR);
> +
> /* On a real system, the first 16k is a `secure boot rom' */
> memory_region_init_rom(&s->secure_rom, NULL, "imx31.secure_rom",
> FSL_IMX31_SECURE_ROM_SIZE, &err);
> diff --git a/include/hw/arm/fsl-imx31.h b/include/hw/arm/fsl-imx31.h
> index ac5ca9826a..dd8561b309 100644
> --- a/include/hw/arm/fsl-imx31.h
> +++ b/include/hw/arm/fsl-imx31.h
> @@ -25,6 +25,7 @@
> #include "hw/timer/imx_epit.h"
> #include "hw/i2c/imx_i2c.h"
> #include "hw/gpio/imx_gpio.h"
> +#include "hw/watchdog/wdt_imx2.h"
> #include "exec/memory.h"
> #include "target/arm/cpu.h"
>
> @@ -49,6 +50,7 @@ typedef struct FslIMX31State {
> IMXEPITState epit[FSL_IMX31_NUM_EPITS];
> IMXI2CState i2c[FSL_IMX31_NUM_I2CS];
> IMXGPIOState gpio[FSL_IMX31_NUM_GPIOS];
> + IMX2WdtState wdt;
> MemoryRegion secure_rom;
> MemoryRegion rom;
> MemoryRegion iram;
> @@ -87,6 +89,8 @@ typedef struct FslIMX31State {
> #define FSL_IMX31_GPIO1_SIZE 0x4000
> #define FSL_IMX31_GPIO2_ADDR 0x53FD0000
> #define FSL_IMX31_GPIO2_SIZE 0x4000
> +#define FSL_IMX31_WDT_ADDR 0x53FDC000
> +#define FSL_IMX31_WDT_SIZE 0x4000
> #define FSL_IMX31_AVIC_ADDR 0x68000000
> #define FSL_IMX31_AVIC_SIZE 0x100
> #define FSL_IMX31_SDRAM0_ADDR 0x80000000
>
Missing Kconfig hunk:
-- >8 --
diff --git a/hw/arm/Kconfig b/hw/arm/Kconfig
index 4cf8fa4967..8af023abde 100644
--- a/hw/arm/Kconfig
+++ b/hw/arm/Kconfig
@@ -366,6 +366,7 @@ config FSL_IMX31
select SERIAL
select IMX
select IMX_I2C
+ select WDT_IMX2
select LAN9118
config FSL_IMX6
---
With it:
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
^ permalink raw reply related [flat|nested] 16+ messages in thread
* Re: [PATCH 1/8] hw: Move i.MX watchdog driver to hw/watchdog
2020-03-14 21:46 ` Philippe Mathieu-Daudé
@ 2020-03-14 22:11 ` Guenter Roeck
0 siblings, 0 replies; 16+ messages in thread
From: Guenter Roeck @ 2020-03-14 22:11 UTC (permalink / raw)
To: Philippe Mathieu-Daudé, Peter Maydell
Cc: Andrey Smirnov, qemu-arm, Peter Chubb, qemu-devel,
Jean-Christophe Dubois
Hi Philippe,
On 3/14/20 2:46 PM, Philippe Mathieu-Daudé wrote:
[ ... ]
> Corrected hunk:
>
> -- >8 --
> diff --git a/hw/arm/Kconfig b/hw/arm/Kconfig
> index e5a876c8d1..c662d5f1e0 100644
> --- a/hw/arm/Kconfig
> +++ b/hw/arm/Kconfig
> @@ -373,6 +373,7 @@ config FSL_IMX6
> select IMX
> select IMX_FEC
> select IMX_I2C
> + select WDT_IMX2
> select SDHCI
>
> config ASPEED_SOC
> @@ -410,6 +411,7 @@ config FSL_IMX7
> select IMX
> select IMX_FEC
> select IMX_I2C
> + select WDT_IMX2
> select PCI_EXPRESS_DESIGNWARE
> select SDHCI
> select UNIMP
> @@ -423,6 +425,7 @@ config FSL_IMX6UL
> select IMX
> select IMX_FEC
> select IMX_I2C
> + select WDT_IMX2
> select SDHCI
> select UNIMP
>
Done. I also fixed
>> +common-obj-$(CONFIG_WDT_IMX) += wdt_imx2.o
to
>> +common-obj-$(CONFIG_WDT_IMX2) += wdt_imx2.o
in patch 1/8 (that had slipped to patch 2/8).
Thanks a lot for the feedback,
Guenter
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH 3/8] hw/arm/fsl-imx25: Wire up watchdog
2020-03-14 21:48 ` Philippe Mathieu-Daudé
@ 2020-03-14 22:12 ` Guenter Roeck
0 siblings, 0 replies; 16+ messages in thread
From: Guenter Roeck @ 2020-03-14 22:12 UTC (permalink / raw)
To: Philippe Mathieu-Daudé, Peter Maydell
Cc: Andrey Smirnov, qemu-arm, Peter Chubb, qemu-devel,
Jean-Christophe Dubois
On 3/14/20 2:48 PM, Philippe Mathieu-Daudé wrote:
[ ... ]
> Here you also need:
>
> -- >8 --
> diff --git a/hw/arm/Kconfig b/hw/arm/Kconfig
> index c662d5f1e0..4cf8fa4967 100644
> --- a/hw/arm/Kconfig
> +++ b/hw/arm/Kconfig
> @@ -358,6 +358,7 @@ config FSL_IMX25
> select IMX
> select IMX_FEC
> select IMX_I2C
> + select WDT_IMX2
> select DS1338
>
> config FSL_IMX31
> ---
>
> With it:
> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
>
Done.
Thanks,
Guenter
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH 4/8] hw/arm/fsl-imx31: Wire up watchdog
2020-03-14 21:50 ` Philippe Mathieu-Daudé
@ 2020-03-14 22:12 ` Guenter Roeck
0 siblings, 0 replies; 16+ messages in thread
From: Guenter Roeck @ 2020-03-14 22:12 UTC (permalink / raw)
To: Philippe Mathieu-Daudé, Peter Maydell
Cc: Andrey Smirnov, qemu-arm, Peter Chubb, qemu-devel,
Jean-Christophe Dubois
On 3/14/20 2:50 PM, Philippe Mathieu-Daudé wrote:
[ ...]
> Missing Kconfig hunk:
>
> -- >8 --
> diff --git a/hw/arm/Kconfig b/hw/arm/Kconfig
> index 4cf8fa4967..8af023abde 100644
> --- a/hw/arm/Kconfig
> +++ b/hw/arm/Kconfig
> @@ -366,6 +366,7 @@ config FSL_IMX31
> select SERIAL
> select IMX
> select IMX_I2C
> + select WDT_IMX2
> select LAN9118
>
> config FSL_IMX6
> ---
>
> With it:
> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
>
Done.
Thanks,
Guenter
^ permalink raw reply [flat|nested] 16+ messages in thread
end of thread, other threads:[~2020-03-14 22:14 UTC | newest]
Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-03-14 17:27 [PATCH 0/8] hw/arm: Implement i.MX watchdog support Guenter Roeck
2020-03-14 17:27 ` [PATCH 1/8] hw: Move i.MX watchdog driver to hw/watchdog Guenter Roeck
2020-03-14 21:43 ` Philippe Mathieu-Daudé
2020-03-14 21:46 ` Philippe Mathieu-Daudé
2020-03-14 22:11 ` Guenter Roeck
2020-03-14 17:27 ` [PATCH 2/8] hw/watchdog: Implement full i.MX watchdog support Guenter Roeck
2020-03-14 17:27 ` [PATCH 3/8] hw/arm/fsl-imx25: Wire up watchdog Guenter Roeck
2020-03-14 21:48 ` Philippe Mathieu-Daudé
2020-03-14 22:12 ` Guenter Roeck
2020-03-14 17:27 ` [PATCH 4/8] hw/arm/fsl-imx31: " Guenter Roeck
2020-03-14 21:50 ` Philippe Mathieu-Daudé
2020-03-14 22:12 ` Guenter Roeck
2020-03-14 17:27 ` [PATCH 5/8] hw/arm/fsl-imx6: Connect watchdog interrupts Guenter Roeck
2020-03-14 17:27 ` [PATCH 6/8] hw/arm/fsl-imx6ul: " Guenter Roeck
2020-03-14 17:27 ` [PATCH 7/8] hw/arm/fsl-imx7: Instantiate various unimplemented devices Guenter Roeck
2020-03-14 17:27 ` [PATCH 8/8] hw/arm/fsl-imx7: Connect watchdog interrupts Guenter Roeck
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).