1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright 2017 CS Systemes d'Information
10 #include <asm/cpm_8xx.h>
13 void hw_watchdog_reset(void)
15 immap_t __iomem *immap = (immap_t __iomem *)CONFIG_SYS_IMMR;
17 out_be16(&immap->im_siu_conf.sc_swsr, 0x556c); /* write magic1 */
18 out_be16(&immap->im_siu_conf.sc_swsr, 0xaa39); /* write magic2 */
21 #ifdef CONFIG_WDT_MPC8xx
22 static int mpc8xx_wdt_start(struct udevice *dev, u64 timeout, ulong flags)
24 immap_t __iomem *immap = (immap_t __iomem *)CONFIG_SYS_IMMR;
26 out_be32(&immap->im_siu_conf.sc_sypcr, CONFIG_SYS_SYPCR);
28 if (!(in_be32(&immap->im_siu_conf.sc_sypcr) & SYPCR_SWE))
34 static int mpc8xx_wdt_stop(struct udevice *dev)
36 immap_t __iomem *immap = (immap_t __iomem *)CONFIG_SYS_IMMR;
38 out_be32(&immap->im_siu_conf.sc_sypcr, CONFIG_SYS_SYPCR & ~SYPCR_SWE);
40 if (in_be32(&immap->im_siu_conf.sc_sypcr) & SYPCR_SWE)
45 static int mpc8xx_wdt_reset(struct udevice *dev)
52 static const struct wdt_ops mpc8xx_wdt_ops = {
53 .start = mpc8xx_wdt_start,
54 .reset = mpc8xx_wdt_reset,
55 .stop = mpc8xx_wdt_stop,
58 static const struct udevice_id mpc8xx_wdt_ids[] = {
59 { .compatible = "fsl,pq1-wdt" },
63 U_BOOT_DRIVER(wdt_mpc8xx) = {
66 .of_match = mpc8xx_wdt_ids,
67 .ops = &mpc8xx_wdt_ops,
69 #endif /* CONFIG_WDT_MPC8xx */