Eric Auger | 62d9551 | 2016-02-19 09:42:29 -0700 | [diff] [blame] | 1 | /* |
| 2 | * AMD XGBE VFIO device |
| 3 | * |
| 4 | * Copyright Linaro Limited, 2015 |
| 5 | * |
| 6 | * Authors: |
| 7 | * Eric Auger <eric.auger@linaro.org> |
| 8 | * |
| 9 | * This work is licensed under the terms of the GNU GPL, version 2. See |
| 10 | * the COPYING file in the top-level directory. |
| 11 | * |
| 12 | */ |
| 13 | |
Peter Maydell | 974dc73 | 2016-02-23 12:00:47 +0000 | [diff] [blame] | 14 | #include "qemu/osdep.h" |
Eric Auger | 62d9551 | 2016-02-19 09:42:29 -0700 | [diff] [blame] | 15 | #include "hw/vfio/vfio-amd-xgbe.h" |
Markus Armbruster | d645427 | 2019-08-12 07:23:45 +0200 | [diff] [blame] | 16 | #include "migration/vmstate.h" |
Markus Armbruster | 0b8fa32 | 2019-05-23 16:35:07 +0200 | [diff] [blame] | 17 | #include "qemu/module.h" |
Eric Auger | 62d9551 | 2016-02-19 09:42:29 -0700 | [diff] [blame] | 18 | |
| 19 | static void amd_xgbe_realize(DeviceState *dev, Error **errp) |
| 20 | { |
| 21 | VFIOPlatformDevice *vdev = VFIO_PLATFORM_DEVICE(dev); |
| 22 | VFIOAmdXgbeDeviceClass *k = VFIO_AMD_XGBE_DEVICE_GET_CLASS(dev); |
| 23 | |
| 24 | vdev->compat = g_strdup("amd,xgbe-seattle-v1a"); |
Eric Auger | a49531e | 2018-10-15 10:52:09 -0600 | [diff] [blame] | 25 | vdev->num_compat = 1; |
Eric Auger | 62d9551 | 2016-02-19 09:42:29 -0700 | [diff] [blame] | 26 | |
| 27 | k->parent_realize(dev, errp); |
| 28 | } |
| 29 | |
| 30 | static const VMStateDescription vfio_platform_amd_xgbe_vmstate = { |
Li Qiang | da56e33 | 2019-05-21 08:15:41 -0700 | [diff] [blame] | 31 | .name = "vfio-amd-xgbe", |
Eric Auger | 62d9551 | 2016-02-19 09:42:29 -0700 | [diff] [blame] | 32 | .unmigratable = 1, |
| 33 | }; |
| 34 | |
| 35 | static void vfio_amd_xgbe_class_init(ObjectClass *klass, void *data) |
| 36 | { |
| 37 | DeviceClass *dc = DEVICE_CLASS(klass); |
| 38 | VFIOAmdXgbeDeviceClass *vcxc = |
| 39 | VFIO_AMD_XGBE_DEVICE_CLASS(klass); |
Philippe Mathieu-Daudé | bf85388 | 2018-01-13 23:04:12 -0300 | [diff] [blame] | 40 | device_class_set_parent_realize(dc, amd_xgbe_realize, |
| 41 | &vcxc->parent_realize); |
Eric Auger | 62d9551 | 2016-02-19 09:42:29 -0700 | [diff] [blame] | 42 | dc->desc = "VFIO AMD XGBE"; |
| 43 | dc->vmsd = &vfio_platform_amd_xgbe_vmstate; |
Eduardo Habkost | e4f4fb1 | 2017-05-03 17:35:45 -0300 | [diff] [blame] | 44 | /* Supported by TYPE_VIRT_MACHINE */ |
| 45 | dc->user_creatable = true; |
Eric Auger | 62d9551 | 2016-02-19 09:42:29 -0700 | [diff] [blame] | 46 | } |
| 47 | |
| 48 | static const TypeInfo vfio_amd_xgbe_dev_info = { |
| 49 | .name = TYPE_VFIO_AMD_XGBE, |
| 50 | .parent = TYPE_VFIO_PLATFORM, |
| 51 | .instance_size = sizeof(VFIOAmdXgbeDevice), |
| 52 | .class_init = vfio_amd_xgbe_class_init, |
| 53 | .class_size = sizeof(VFIOAmdXgbeDeviceClass), |
| 54 | }; |
| 55 | |
| 56 | static void register_amd_xgbe_dev_type(void) |
| 57 | { |
| 58 | type_register_static(&vfio_amd_xgbe_dev_info); |
| 59 | } |
| 60 | |
| 61 | type_init(register_amd_xgbe_dev_type) |