aboutsummaryrefslogtreecommitdiff
path: root/include/hw/watchdog/allwinner-wdt.h
blob: 7fe41e20f2ee1fd5a9e887d306f08c65d745637a (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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/*
 * Allwinner Watchdog emulation
 *
 * Copyright (C) 2023 Strahinja Jankovic <strahinja.p.jankovic@gmail.com>
 *
 *  This file is derived from Allwinner RTC,
 *  by Niek Linnenbank.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef HW_WATCHDOG_ALLWINNER_WDT_H
#define HW_WATCHDOG_ALLWINNER_WDT_H

#include "qom/object.h"
#include "hw/ptimer.h"
#include "hw/sysbus.h"

/*
 * This is a model of the Allwinner watchdog.
 * Since watchdog registers belong to the timer module (and are shared with the
 * RTC module), the interrupt line from watchdog is not handled right now.
 * In QEMU, we just wire up the watchdog reset to watchdog_perform_action(),
 * at least for the moment.
 */

#define TYPE_AW_WDT    "allwinner-wdt"

/** Allwinner WDT sun4i family (A10, A12), also sun7i (A20) */
#define TYPE_AW_WDT_SUN4I    TYPE_AW_WDT "-sun4i"

/** Allwinner WDT sun6i family and newer (A31, H2+, H3, etc) */
#define TYPE_AW_WDT_SUN6I    TYPE_AW_WDT "-sun6i"

/** Number of WDT registers */
#define AW_WDT_REGS_NUM      (5)

OBJECT_DECLARE_TYPE(AwWdtState, AwWdtClass, AW_WDT)

/**
 * Allwinner WDT object instance state.
 */
struct AwWdtState {
    /*< private >*/
    SysBusDevice parent_obj;

    /*< public >*/
    MemoryRegion iomem;
    struct ptimer_state *timer;

    uint32_t regs[AW_WDT_REGS_NUM];
};

/**
 * Allwinner WDT class-level struct.
 *
 * This struct is filled by each sunxi device specific code
 * such that the generic code can use this struct to support
 * all devices.
 */
struct AwWdtClass {
    /*< private >*/
    SysBusDeviceClass parent_class;
    /*< public >*/

    /** Defines device specific register map */
    const uint8_t *regmap;

    /** Size of the regmap in bytes */
    size_t regmap_size;

    /**
     * Read device specific register
     *
     * @offset: register offset to read
     * @return true if register read successful, false otherwise
     */
    bool (*read)(AwWdtState *s, uint32_t offset);

    /**
     * Write device specific register
     *
     * @offset: register offset to write
     * @data: value to set in register
     * @return true if register write successful, false otherwise
     */
    bool (*write)(AwWdtState *s, uint32_t offset, uint32_t data);

    /**
     * Check if watchdog can generate system reset
     *
     * @return true if watchdog can generate system reset
     */
    bool (*can_reset_system)(AwWdtState *s);

    /**
     * Check if provided key is valid
     *
     * @value: value written to register
     * @return true if key is valid, false otherwise
     */
    bool (*is_key_valid)(AwWdtState *s, uint32_t val);

    /**
     * Get current INTV_VALUE setting
     *
     * @return current INTV_VALUE (0-15)
     */
    uint8_t (*get_intv_value)(AwWdtState *s);
};

#endif /* HW_WATCHDOG_ALLWINNER_WDT_H */