qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Philippe Mathieu-Daudé" <philmd@linaro.org>
To: marcandre.lureau@redhat.com, qemu-devel@nongnu.org,
	Alistair Francis <alistair@alistair23.me>,
	"Edgar E. Iglesias" <edgar.iglesias@gmail.com>
Cc: BALATON Zoltan <balaton@eik.bme.hu>,
	stefanha@gmail.com, Gerd Hoffmann <kraxel@redhat.com>,
	qemu-ppc@nongnu.org, Paolo Bonzini <pbonzini@redhat.com>,
	Peter Maydell <peter.maydell@linaro.org>,
	"open list:ARM TCG CPUs" <qemu-arm@nongnu.org>
Subject: Re: [PATCH v8 20/24] arm/kconfig: XLNX_ZYNQMP_ARM depends on PIXMAN
Date: Tue, 7 Nov 2023 10:17:33 +0100	[thread overview]
Message-ID: <83af2168-b7ad-4608-a531-18373a19c9f4@linaro.org> (raw)
In-Reply-To: <20231107071915.2459115-21-marcandre.lureau@redhat.com>

Hi Marc-André,

On 7/11/23 08:19, marcandre.lureau@redhat.com wrote:
> From: Marc-André Lureau <marcandre.lureau@redhat.com>
> 
> The Display Port has some strong PIXMAN dependency.
> 
> Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
> Reviewed-by: Thomas Huth <thuth@redhat.com>
> ---
>   hw/arm/Kconfig         | 3 ++-
>   hw/display/Kconfig     | 5 +++++
>   hw/display/meson.build | 2 +-
>   3 files changed, 8 insertions(+), 2 deletions(-)
> 
> diff --git a/hw/arm/Kconfig b/hw/arm/Kconfig
> index e35007ed41..8ce288a40c 100644
> --- a/hw/arm/Kconfig
> +++ b/hw/arm/Kconfig
> @@ -451,7 +451,7 @@ config STM32F405_SOC
>   config XLNX_ZYNQMP_ARM
>       bool
>       default y
> -    depends on TCG && AARCH64
> +    depends on TCG && AARCH64 && PIXMAN

NACK, this should be:

-- >8 --
  config XLNX_ZYNQMP_ARM
      bool
-    default y
+    default y if PIXMAN
      depends on TCG && AARCH64
      select AHCI
      select ARM_GIC
---

>       select AHCI
>       select ARM_GIC
>       select CADENCE
> @@ -463,6 +463,7 @@ config XLNX_ZYNQMP_ARM
>       select XILINX_AXI
>       select XILINX_SPIPS
>       select XLNX_CSU_DMA
> +    select XLNX_DISPLAYPORT

OK.

>       select XLNX_ZYNQMP
>       select XLNX_ZDMA
>       select USB_DWC3
> diff --git a/hw/display/Kconfig b/hw/display/Kconfig
> index 4d8b0cec40..1aafe1923d 100644
> --- a/hw/display/Kconfig
> +++ b/hw/display/Kconfig
> @@ -134,3 +134,8 @@ config MACFB
>       bool
>       select FRAMEBUFFER
>       depends on NUBUS
> +
> +config XLNX_DISPLAYPORT
> +    bool
> +    # defaults to "N", enabled by specific boards
> +    depends on PIXMAN

OK (XLNX_ZYNQMP_ARM gets the dependency from here).

Conditional to using "default y if PIXMAN":
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>



  reply	other threads:[~2023-11-07  9:18 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-11-07  7:18 [PATCH v8 00/24] Make Pixman an optional dependency marcandre.lureau
2023-11-07  7:18 ` [PATCH v8 01/24] build-sys: add a "pixman" feature marcandre.lureau
2023-11-07  7:18 ` [PATCH v8 02/24] build-sys: drop needless warning pragmas for old pixman marcandre.lureau
2023-11-07  9:13   ` Philippe Mathieu-Daudé
2023-11-07  7:18 ` [PATCH v8 03/24] ui: compile out some qemu-pixman functions when !PIXMAN marcandre.lureau
2023-11-07  9:13   ` Philippe Mathieu-Daudé
2023-11-07  7:18 ` [PATCH v8 04/24] ui: add pixman-minimal.h marcandre.lureau
2023-11-07  7:18 ` [PATCH v8 05/24] vl: drop needless -spice checks marcandre.lureau
2023-11-07  7:18 ` [PATCH v8 06/24] qemu-options: define -vnc only #ifdef CONFIG_VNC marcandre.lureau
2023-11-07  7:18 ` [PATCH v8 07/24] vl: simplify display_remote logic marcandre.lureau
2023-11-07  7:18 ` [PATCH v8 08/24] vl: move display early init before default devices marcandre.lureau
2023-11-07  7:18 ` [PATCH v8 09/24] ui/console: allow to override the default VC marcandre.lureau
2023-11-07  7:19 ` [PATCH v8 10/24] ui/vc: console-vc requires PIXMAN marcandre.lureau
2023-11-07  7:19 ` [PATCH v8 11/24] qmp/hmp: disable screendump if PIXMAN is missing marcandre.lureau
2023-11-07  7:19 ` [PATCH v8 12/24] virtio-gpu: replace PIXMAN for region/rect test marcandre.lureau
2023-11-07  7:19 ` [PATCH v8 13/24] ui/console: when PIXMAN is unavailable, don't draw placeholder msg marcandre.lureau
2023-11-07  7:19 ` [PATCH v8 14/24] vhost-user-gpu: skip VHOST_USER_GPU_UPDATE when !PIXMAN marcandre.lureau
2023-11-07  7:19 ` [PATCH v8 15/24] ui/gl: opengl doesn't require PIXMAN marcandre.lureau
2023-11-07  7:19 ` [PATCH v8 16/24] ui/vnc: VNC requires PIXMAN marcandre.lureau
2023-11-07  7:19 ` [PATCH v8 17/24] ui/spice: SPICE/QXL " marcandre.lureau
2023-11-07  7:19 ` [PATCH v8 18/24] ui/gtk: -display gtk " marcandre.lureau
2023-11-07  7:19 ` [PATCH v8 19/24] ui/dbus: do not require PIXMAN marcandre.lureau
2023-11-07  7:19 ` [PATCH v8 20/24] arm/kconfig: XLNX_ZYNQMP_ARM depends on PIXMAN marcandre.lureau
2023-11-07  9:17   ` Philippe Mathieu-Daudé [this message]
2023-11-07  7:19 ` [PATCH v8 21/24] hw/sm501: allow compiling without PIXMAN marcandre.lureau
2023-11-07  7:19 ` [PATCH v8 22/24] hw/mips: FULOONG depends on VT82C686 marcandre.lureau
2023-11-07  7:19 ` [PATCH v8 23/24] hw/display/ati: allow compiling without PIXMAN marcandre.lureau
2023-11-07  7:25   ` Marc-André Lureau
2023-11-07  8:46   ` BALATON Zoltan
2023-11-07  8:55     ` Marc-André Lureau
2023-11-07  7:19 ` [PATCH v8 24/24] build-sys: make pixman actually optional marcandre.lureau

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=83af2168-b7ad-4608-a531-18373a19c9f4@linaro.org \
    --to=philmd@linaro.org \
    --cc=alistair@alistair23.me \
    --cc=balaton@eik.bme.hu \
    --cc=edgar.iglesias@gmail.com \
    --cc=kraxel@redhat.com \
    --cc=marcandre.lureau@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-arm@nongnu.org \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-ppc@nongnu.org \
    --cc=stefanha@gmail.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).