瀏覽代碼

hw: Add vmapple subdir

We will introduce a number of devices that are specific to the vmapple
target machine. To keep them all tidily together, let's put them into
a single target directory.

Signed-off-by: Alexander Graf <graf@amazon.com>
Signed-off-by: Phil Dennis-Jordan <phil@philjordan.eu>
Reviewed-by: Akihiko Odaki <akihiko.odaki@daynix.com>
Tested-by: Akihiko Odaki <akihiko.odaki@daynix.com>
Message-ID: <20241223221645.29911-7-phil@philjordan.eu>
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Alexander Graf 2 年之前
父節點
當前提交
11fa056e79
共有 8 個文件被更改,包括 16 次插入0 次删除
  1. 7 0
      MAINTAINERS
  2. 1 0
      hw/Kconfig
  3. 1 0
      hw/meson.build
  4. 1 0
      hw/vmapple/Kconfig
  5. 1 0
      hw/vmapple/meson.build
  6. 2 0
      hw/vmapple/trace-events
  7. 2 0
      hw/vmapple/trace.h
  8. 1 0
      meson.build

+ 7 - 0
MAINTAINERS

@@ -2820,6 +2820,13 @@ F: hw/misc/ivshmem-flat.c
 F: include/hw/misc/ivshmem-flat.h
 F: docs/system/devices/ivshmem-flat.rst
 
+VMapple
+M: Alexander Graf <agraf@csgraf.de>
+M: Phil Dennis-Jordan <phil@philjordan.eu>
+S: Maintained
+F: hw/vmapple/*
+F: include/hw/vmapple/*
+
 Subsystems
 ----------
 Overall Audio backends

+ 1 - 0
hw/Kconfig

@@ -41,6 +41,7 @@ source ufs/Kconfig
 source usb/Kconfig
 source virtio/Kconfig
 source vfio/Kconfig
+source vmapple/Kconfig
 source xen/Kconfig
 source watchdog/Kconfig
 

+ 1 - 0
hw/meson.build

@@ -39,6 +39,7 @@ subdir('ufs')
 subdir('usb')
 subdir('vfio')
 subdir('virtio')
+subdir('vmapple')
 subdir('watchdog')
 subdir('xen')
 subdir('xenpv')

+ 1 - 0
hw/vmapple/Kconfig

@@ -0,0 +1 @@
+# SPDX-License-Identifier: GPL-2.0-or-later

+ 1 - 0
hw/vmapple/meson.build

@@ -0,0 +1 @@
+# SPDX-License-Identifier: GPL-2.0-or-later

+ 2 - 0
hw/vmapple/trace-events

@@ -0,0 +1,2 @@
+# See docs/devel/tracing.rst for syntax documentation.
+# SPDX-License-Identifier: GPL-2.0-or-later

+ 2 - 0
hw/vmapple/trace.h

@@ -0,0 +1,2 @@
+/* SPDX-License-Identifier: GPL-2.0-or-later */
+#include "trace/trace-hw_vmapple.h"

+ 1 - 0
meson.build

@@ -3605,6 +3605,7 @@ if have_system
     'hw/usb',
     'hw/vfio',
     'hw/virtio',
+    'hw/vmapple',
     'hw/watchdog',
     'hw/xen',
     'hw/gpio',