aboutsummaryrefslogtreecommitdiff
path: root/include/hw/watchdog/sbsa_gwdt.h
blob: 4bdc6c6fdb6970f09e4ca21196438265241c9e4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/*
 * Copyright (c) 2020 Linaro Limited
 *
 * Authors:
 *  Shashi Mallela <shashi.mallela@linaro.org>
 *
 * This work is licensed under the terms of the GNU GPL, version 2 or (at your
 * option) any later version.  See the COPYING file in the top-level directory.
 *
 */

#ifndef WDT_SBSA_GWDT_H
#define WDT_SBSA_GWDT_H

#include "qemu/bitops.h"
#include "hw/sysbus.h"
#include "hw/irq.h"

#define TYPE_WDT_SBSA "sbsa_gwdt"
#define SBSA_GWDT(obj) \
    OBJECT_CHECK(SBSA_GWDTState, (obj), TYPE_WDT_SBSA)
#define SBSA_GWDT_CLASS(klass) \
    OBJECT_CLASS_CHECK(SBSA_GWDTClass, (klass), TYPE_WDT_SBSA)
#define SBSA_GWDT_GET_CLASS(obj) \
    OBJECT_GET_CLASS(SBSA_GWDTClass, (obj), TYPE_WDT_SBSA)

/* SBSA Generic Watchdog register definitions */
/* refresh frame */
#define SBSA_GWDT_WRR       0x000

/* control frame */
#define SBSA_GWDT_WCS       0x000
#define SBSA_GWDT_WOR       0x008
#define SBSA_GWDT_WORU      0x00C
#define SBSA_GWDT_WCV       0x010
#define SBSA_GWDT_WCVU      0x014

/* Watchdog Interface Identification Register */
#define SBSA_GWDT_W_IIDR    0xFCC

/* Watchdog Control and Status Register Bits */
#define SBSA_GWDT_WCS_EN    BIT(0)
#define SBSA_GWDT_WCS_WS0   BIT(1)
#define SBSA_GWDT_WCS_WS1   BIT(2)

#define SBSA_GWDT_WOR_MASK  0x0000FFFF

/*
 * Watchdog Interface Identification Register definition
 * considering JEP106 code for ARM in Bits [11:0]
 */
#define SBSA_GWDT_ID        0x1043B

/* 2 Separate memory regions for each of refresh & control register frames */
#define SBSA_GWDT_RMMIO_SIZE 0x1000
#define SBSA_GWDT_CMMIO_SIZE 0x1000

typedef struct SBSA_GWDTState {
    /* <private> */
    SysBusDevice parent_obj;

    /*< public >*/
    MemoryRegion rmmio;
    MemoryRegion cmmio;
    qemu_irq irq;

    QEMUTimer *timer;
    uint64_t freq;

    uint32_t id;
    uint32_t wcs;
    uint32_t worl;
    uint32_t woru;
    uint32_t wcvl;
    uint32_t wcvu;
} SBSA_GWDTState;

#endif /* WDT_SBSA_GWDT_H */