]> Git Repo - qemu.git/blob - include/hw/misc/imx7_gpr.h
Merge remote-tracking branch 'remotes/stsquad/tags/pull-travis-speedup-090218-1'...
[qemu.git] / include / hw / misc / imx7_gpr.h
1 /*
2  * Copyright (c) 2017, Impinj, Inc.
3  *
4  * i.MX7 GPR IP block emulation code
5  *
6  * Author: Andrey Smirnov <[email protected]>
7  *
8  * This work is licensed under the terms of the GNU GPL, version 2 or later.
9  * See the COPYING file in the top-level directory.
10  */
11
12 #ifndef IMX7_GPR_H
13 #define IMX7_GPR_H
14
15 #include "qemu/bitops.h"
16 #include "hw/sysbus.h"
17
18 #define TYPE_IMX7_GPR "imx7.gpr"
19 #define IMX7_GPR(obj) OBJECT_CHECK(IMX7GPRState, (obj), TYPE_IMX7_GPR)
20
21 typedef struct IMX7GPRState {
22     /* <private> */
23     SysBusDevice parent_obj;
24
25     MemoryRegion mmio;
26 } IMX7GPRState;
27
28 #endif /* IMX7_GPR_H */
This page took 0.02556 seconds and 4 git commands to generate.