From: "Philippe Mathieu-Daudé" <philmd@linaro.org>
To: Phil Dennis-Jordan <phil@philjordan.eu>, qemu-devel@nongnu.org
Cc: agraf@csgraf.de, peter.maydell@linaro.org, pbonzini@redhat.com,
mst@redhat.com, stefanha@redhat.com, kwolf@redhat.com,
hreitz@redhat.com, berrange@redhat.com, eduardo@habkost.net,
marcel.apfelbaum@gmail.com, marcandre.lureau@redhat.com,
eblake@redhat.com, armbru@redhat.com, qemu-block@nongnu.org,
qemu-arm@nongnu.org, Alexander Graf <graf@amazon.com>,
Akihiko Odaki <akihiko.odaki@daynix.com>
Subject: Re: [PATCH v17 03/11] hw: Add vmapple subdir
Date: Mon, 3 Mar 2025 18:52:01 +0100 [thread overview]
Message-ID: <d97172e5-b8ae-4852-ae2b-b430cca53288@linaro.org> (raw)
In-Reply-To: <20250112210056.16658-4-phil@philjordan.eu>
On 12/1/25 22:00, Phil Dennis-Jordan wrote:
> From: Alexander Graf <graf@amazon.com>
>
> 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>
> ---
> MAINTAINERS | 7 +++++++
> hw/Kconfig | 1 +
> hw/meson.build | 1 +
> hw/vmapple/Kconfig | 1 +
> hw/vmapple/meson.build | 0
> hw/vmapple/trace-events | 2 ++
> hw/vmapple/trace.h | 1 +
> meson.build | 1 +
> 8 files changed, 14 insertions(+)
> create mode 100644 hw/vmapple/Kconfig
> create mode 100644 hw/vmapple/meson.build
> create mode 100644 hw/vmapple/trace-events
> create mode 100644 hw/vmapple/trace.h
> diff --git a/hw/vmapple/Kconfig b/hw/vmapple/Kconfig
> new file mode 100644
> index 0000000000..8b13789179
> --- /dev/null
> +++ b/hw/vmapple/Kconfig
> @@ -0,0 +1 @@
> +
> diff --git a/hw/vmapple/meson.build b/hw/vmapple/meson.build
> new file mode 100644
> index 0000000000..e69de29bb2
> diff --git a/hw/vmapple/trace-events b/hw/vmapple/trace-events
> new file mode 100644
> index 0000000000..9ccc579048
> --- /dev/null
> +++ b/hw/vmapple/trace-events
> @@ -0,0 +1,2 @@
> +# See docs/devel/tracing.rst for syntax documentation.
> +
> diff --git a/hw/vmapple/trace.h b/hw/vmapple/trace.h
> new file mode 100644
> index 0000000000..572adbefe0
> --- /dev/null
> +++ b/hw/vmapple/trace.h
> @@ -0,0 +1 @@
> +#include "trace/trace-hw_vmapple.h"
> diff --git a/meson.build b/meson.build
> index d06f59095c..812ef33550 100644
> --- a/meson.build
> +++ b/meson.build
> @@ -3588,6 +3588,7 @@ if have_system
> 'hw/usb',
> 'hw/vfio',
> 'hw/virtio',
> + 'hw/vmapple',
> 'hw/watchdog',
> 'hw/xen',
> 'hw/gpio',
Alex, Phil, we now mandate a SPDX tag. Due to the license used in
vmapple.c in this patch, are you OK with me squashing here:
-- >8 --
diff --git a/hw/vmapple/trace.h b/hw/vmapple/trace.h
index 572adbefe04..d099d5ecd9e 100644
--- a/hw/vmapple/trace.h
+++ b/hw/vmapple/trace.h
@@ -0,0 +1 @@
+/* SPDX-License-Identifier: GPL-2.0-or-later */
diff --git a/hw/vmapple/Kconfig b/hw/vmapple/Kconfig
index 8b137891791..315c06b689c 100644
--- a/hw/vmapple/Kconfig
+++ b/hw/vmapple/Kconfig
@@ -1 +1 @@
-
+# SPDX-License-Identifier: GPL-2.0-or-later
diff --git a/hw/vmapple/meson.build b/hw/vmapple/meson.build
index e69de29bb2d..315c06b689c 100644
--- a/hw/vmapple/meson.build
+++ b/hw/vmapple/meson.build
@@ -0,0 +1 @@
+# SPDX-License-Identifier: GPL-2.0-or-later
diff --git a/hw/vmapple/trace-events b/hw/vmapple/trace-events
index 9ccc5790487..21125794121 100644
--- a/hw/vmapple/trace-events
+++ b/hw/vmapple/trace-events
@@ -2 +2 @@
-
+# SPDX-License-Identifier: GPL-2.0-or-later
---
?
next prev parent reply other threads:[~2025-03-03 17:52 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-01-12 21:00 [PATCH v17 00/11] New vmapple machine type and xhci fixes Phil Dennis-Jordan
2025-01-12 21:00 ` [PATCH v17 01/11] hw/usb/hcd-xhci-pci: Use modulo to select MSI vector as per spec Phil Dennis-Jordan
2025-01-12 21:00 ` [PATCH v17 02/11] hw/usb/hcd-xhci-pci: Use event ring 0 if mapping unsupported Phil Dennis-Jordan
2025-01-12 21:00 ` [PATCH v17 03/11] hw: Add vmapple subdir Phil Dennis-Jordan
2025-03-03 17:52 ` Philippe Mathieu-Daudé [this message]
2025-01-12 21:00 ` [PATCH v17 04/11] hw/misc/pvpanic: Add MMIO interface Phil Dennis-Jordan
2025-03-03 17:54 ` Philippe Mathieu-Daudé
2025-03-03 20:30 ` Phil Dennis-Jordan
2025-01-12 21:00 ` [PATCH v17 05/11] hw/vmapple/aes: Introduce aes engine Phil Dennis-Jordan
2025-01-12 21:00 ` [PATCH v17 06/11] hw/vmapple/bdif: Introduce vmapple backdoor interface Phil Dennis-Jordan
2025-01-12 21:00 ` [PATCH v17 07/11] hw/vmapple/cfg: Introduce vmapple cfg region Phil Dennis-Jordan
2025-01-12 21:00 ` [PATCH v17 08/11] hw/vmapple/virtio-blk: Add support for apple virtio-blk Phil Dennis-Jordan
2025-01-15 12:36 ` Akihiko Odaki
2025-01-12 21:00 ` [PATCH v17 09/11] hw/usb/hcd-xhci-pci: Adds property for disabling mapping in IRQ mode Phil Dennis-Jordan
2025-01-12 21:00 ` [PATCH v17 10/11] hw/intc: Remove TCG dependency on ARM_GICV3 Phil Dennis-Jordan
2025-01-12 21:00 ` [PATCH v17 11/11] hw/vmapple/vmapple: Add vmapple machine type Phil Dennis-Jordan
2025-03-03 18:20 ` Philippe Mathieu-Daudé
2025-03-03 19:23 ` Philippe Mathieu-Daudé
2025-03-03 20:36 ` Phil Dennis-Jordan
2025-03-03 22:11 ` Philippe Mathieu-Daudé
2025-03-05 1:20 ` Philippe Mathieu-Daudé
2025-03-03 21:51 ` Philippe Mathieu-Daudé
2025-01-13 17:31 ` [PATCH v17 00/11] New vmapple machine type and xhci fixes Philippe Mathieu-Daudé
2025-01-14 13:47 ` Phil Dennis-Jordan
2025-01-15 13:05 ` Michael Tokarev
2025-01-15 13:56 ` Phil Dennis-Jordan
2025-01-15 15:08 ` Michael S. Tsirkin
2025-01-15 15:33 ` Phil Dennis-Jordan
2025-01-15 15:40 ` Michael S. Tsirkin
2025-03-03 17:26 ` Philippe Mathieu-Daudé
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=d97172e5-b8ae-4852-ae2b-b430cca53288@linaro.org \
--to=philmd@linaro.org \
--cc=agraf@csgraf.de \
--cc=akihiko.odaki@daynix.com \
--cc=armbru@redhat.com \
--cc=berrange@redhat.com \
--cc=eblake@redhat.com \
--cc=eduardo@habkost.net \
--cc=graf@amazon.com \
--cc=hreitz@redhat.com \
--cc=kwolf@redhat.com \
--cc=marcandre.lureau@redhat.com \
--cc=marcel.apfelbaum@gmail.com \
--cc=mst@redhat.com \
--cc=pbonzini@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=phil@philjordan.eu \
--cc=qemu-arm@nongnu.org \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=stefanha@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).