blob: 675b62d8b393ad1562fd56b793551c39ce270bd6 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Christophe Leroyc0bc2a72018-03-16 17:21:01 +01002/*
3 * Copyright 2017 CS Systemes d'Information
Christophe Leroyc0bc2a72018-03-16 17:21:01 +01004 */
5
6#include <common.h>
Christophe Leroy749c9aa2018-11-21 08:51:45 +00007#include <dm.h>
8#include <wdt.h>
Christophe Leroyc0bc2a72018-03-16 17:21:01 +01009#include <mpc8xx.h>
10#include <asm/cpm_8xx.h>
11#include <asm/io.h>
12
Stefan Roesef3729ba2019-04-11 15:58:46 +020013static void hw_watchdog_reset(void)
Christophe Leroyc0bc2a72018-03-16 17:21:01 +010014{
15 immap_t __iomem *immap = (immap_t __iomem *)CONFIG_SYS_IMMR;
16
17 out_be16(&immap->im_siu_conf.sc_swsr, 0x556c); /* write magic1 */
18 out_be16(&immap->im_siu_conf.sc_swsr, 0xaa39); /* write magic2 */
19}
20
Christophe Leroy749c9aa2018-11-21 08:51:45 +000021static int mpc8xx_wdt_start(struct udevice *dev, u64 timeout, ulong flags)
22{
23 immap_t __iomem *immap = (immap_t __iomem *)CONFIG_SYS_IMMR;
24
25 out_be32(&immap->im_siu_conf.sc_sypcr, CONFIG_SYS_SYPCR);
26
27 if (!(in_be32(&immap->im_siu_conf.sc_sypcr) & SYPCR_SWE))
28 return -EBUSY;
29 return 0;
30
31}
32
33static int mpc8xx_wdt_stop(struct udevice *dev)
34{
35 immap_t __iomem *immap = (immap_t __iomem *)CONFIG_SYS_IMMR;
36
37 out_be32(&immap->im_siu_conf.sc_sypcr, CONFIG_SYS_SYPCR & ~SYPCR_SWE);
38
39 if (in_be32(&immap->im_siu_conf.sc_sypcr) & SYPCR_SWE)
40 return -EBUSY;
41 return 0;
42}
43
44static int mpc8xx_wdt_reset(struct udevice *dev)
45{
46 hw_watchdog_reset();
47
48 return 0;
49}
50
51static const struct wdt_ops mpc8xx_wdt_ops = {
52 .start = mpc8xx_wdt_start,
53 .reset = mpc8xx_wdt_reset,
54 .stop = mpc8xx_wdt_stop,
55};
56
57static const struct udevice_id mpc8xx_wdt_ids[] = {
58 { .compatible = "fsl,pq1-wdt" },
59 {}
60};
61
62U_BOOT_DRIVER(wdt_mpc8xx) = {
63 .name = "wdt_mpc8xx",
64 .id = UCLASS_WDT,
65 .of_match = mpc8xx_wdt_ids,
66 .ops = &mpc8xx_wdt_ops,
67};