From: Zhao Liu <zhao1.liu@xxxxxxxxx> Topology devices are used to define CPUs and need to be created and realized before the board initialization. Use this new catogory to identify such special devices. Signed-off-by: Zhao Liu <zhao1.liu@xxxxxxxxx> --- include/hw/qdev-core.h | 1 + system/qdev-monitor.c | 1 + 2 files changed, 2 insertions(+) diff --git a/include/hw/qdev-core.h b/include/hw/qdev-core.h index 151d9682380d..97b7cfd04e35 100644 --- a/include/hw/qdev-core.h +++ b/include/hw/qdev-core.h @@ -86,6 +86,7 @@ typedef enum DeviceCategory { DEVICE_CATEGORY_SOUND, DEVICE_CATEGORY_MISC, DEVICE_CATEGORY_CPU, + DEVICE_CATEGORY_CPU_DEF, DEVICE_CATEGORY_WATCHDOG, DEVICE_CATEGORY_MAX } DeviceCategory; diff --git a/system/qdev-monitor.c b/system/qdev-monitor.c index a13db763e5dd..0f163b2d0310 100644 --- a/system/qdev-monitor.c +++ b/system/qdev-monitor.c @@ -173,6 +173,7 @@ static void qdev_print_devinfos(bool show_no_user) [DEVICE_CATEGORY_SOUND] = "Sound", [DEVICE_CATEGORY_MISC] = "Misc", [DEVICE_CATEGORY_CPU] = "CPU", + [DEVICE_CATEGORY_CPU_DEF] = "CPU Definition", [DEVICE_CATEGORY_WATCHDOG]= "Watchdog", [DEVICE_CATEGORY_MAX] = "Uncategorized", }; -- 2.34.1