| 1 | /* |
| 2 | * QEMU ARM CPU -- interface for the Arm v8M IDAU |
| 3 | * |
| 4 | * Copyright (c) 2018 Linaro Ltd |
| 5 | * |
| 6 | * SPDX-License-Identifier: GPL-2.0-or-later |
| 7 | */ |
| 8 | |
| 9 | #include "qemu/osdep.h" |
| 10 | #include "target/arm/tcg/idau.h" |
| 11 | |
| 12 | static const TypeInfo idau_types[] = { |
| 13 | { |
| 14 | .name = TYPE_IDAU_INTERFACE, |
| 15 | .parent = TYPE_INTERFACE, |
| 16 | .class_size = sizeof(IDAUInterfaceClass), |
| 17 | } |
| 18 | }; |
| 19 | |
| 20 | DEFINE_TYPES(idau_types) |