summaryrefslogtreecommitdiff
path: root/include/wdt.h
blob: 31739ab2426f75bf6dbb137f96c002dba123b3ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once
#include <types.h>

#define WDT_MAGIC 0x67674141

struct wdt_device {
    uint32_t type;
    uint32_t driver_id;
    uint32_t start;
    uint32_t size;
};

struct wdt_root {
    uint32_t magic;
    uint32_t count;
    struct wdt_device devices[];
};