qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: David Gibson <david@gibson.dropbear.id.au>
To: BALATON Zoltan <balaton@eik.bme.hu>
Cc: qemu-devel@nongnu.org, qemu-trivial@nongnu.org,
	Magnus Damm <magnus.damm@gmail.com>,
	Aurelien Jarno <aurelien@aurel32.net>,
	Peter Maydell <peter.maydell@linaro.org>
Subject: Re: [Qemu-devel] [PATCH v5 13/13] ppc: Add SM501 device in ppc softmmu targets default configs
Date: Fri, 21 Apr 2017 10:24:51 +1000	[thread overview]
Message-ID: <20170421002451.GE13992@umbus.fritz.box> (raw)
In-Reply-To: <c4328880c5a143eab3e835dd9d2e2efcd86d98d1.1492721026.git.balaton@eik.bme.hu>

[-- Attachment #1: Type: text/plain, Size: 2143 bytes --]

On Thu, Apr 20, 2017 at 10:43:46PM +0200, BALATON Zoltan wrote:
> This is not used by default on any emulated machine yet but it is
> still useful to have it compiled so it can be added from the command
> line for clients that can use it (e.g. MorphOS has no driver for any
> other emulated video cards but can output via SM501)
> 
> Signed-off-by: BALATON Zoltan <balaton@eik.bme.hu>

Sure, if you like.

Acked-by: David Gibson <david@gibson.dropbear.id.au>

> ---
> 
> v5: Added sm501 also to ppc64-softmmu default config
> 
>  default-configs/ppc-softmmu.mak    | 1 +
>  default-configs/ppc64-softmmu.mak  | 1 +
>  default-configs/ppcemb-softmmu.mak | 1 +
>  3 files changed, 3 insertions(+)
> 
> diff --git a/default-configs/ppc-softmmu.mak b/default-configs/ppc-softmmu.mak
> index 09c1d45..1f1cd85 100644
> --- a/default-configs/ppc-softmmu.mak
> +++ b/default-configs/ppc-softmmu.mak
> @@ -45,6 +45,7 @@ CONFIG_OPENPIC_KVM=$(and $(CONFIG_E500),$(CONFIG_KVM))
>  CONFIG_PLATFORM_BUS=y
>  CONFIG_ETSEC=y
>  CONFIG_LIBDECNUMBER=y
> +CONFIG_SM501=y
>  # For PReP
>  CONFIG_SERIAL_ISA=y
>  CONFIG_MC146818RTC=y
> diff --git a/default-configs/ppc64-softmmu.mak b/default-configs/ppc64-softmmu.mak
> index 05c8335..f6ccb1b 100644
> --- a/default-configs/ppc64-softmmu.mak
> +++ b/default-configs/ppc64-softmmu.mak
> @@ -47,6 +47,7 @@ CONFIG_OPENPIC_KVM=$(and $(CONFIG_E500),$(CONFIG_KVM))
>  CONFIG_PLATFORM_BUS=y
>  CONFIG_ETSEC=y
>  CONFIG_LIBDECNUMBER=y
> +CONFIG_SM501=y
>  # For pSeries
>  CONFIG_XICS=$(CONFIG_PSERIES)
>  CONFIG_XICS_SPAPR=$(CONFIG_PSERIES)
> diff --git a/default-configs/ppcemb-softmmu.mak b/default-configs/ppcemb-softmmu.mak
> index 7f56004..94340de 100644
> --- a/default-configs/ppcemb-softmmu.mak
> +++ b/default-configs/ppcemb-softmmu.mak
> @@ -15,3 +15,4 @@ CONFIG_I8259=y
>  CONFIG_XILINX=y
>  CONFIG_XILINX_ETHLITE=y
>  CONFIG_LIBDECNUMBER=y
> +CONFIG_SM501=y

-- 
David Gibson			| I'll have my music baroque, and my code
david AT gibson.dropbear.id.au	| minimalist, thank you.  NOT _the_ _other_
				| _way_ _around_!
http://www.ozlabs.org/~dgibson

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

  reply	other threads:[~2017-04-21  0:26 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-04-20 20:43 [Qemu-devel] [PATCH v5 00/13] Improvements for SM501 display controller emulation BALATON Zoltan
2017-04-20 20:43 ` [Qemu-devel] [PATCH v5 08/13] sm501: Fix hardware cursor BALATON Zoltan
2017-04-20 20:43 ` [Qemu-devel] [PATCH v5 13/13] ppc: Add SM501 device in ppc softmmu targets default configs BALATON Zoltan
2017-04-21  0:24   ` David Gibson [this message]
2017-04-20 20:43 ` [Qemu-devel] [PATCH v5 03/13] sm501: Add missing arbitration control register BALATON Zoltan
2017-04-20 20:43 ` [Qemu-devel] [PATCH v5 04/13] sm501: QOMify BALATON Zoltan
2017-04-20 20:43 ` [Qemu-devel] [PATCH v5 12/13] sm501: Add vmstate descriptor BALATON Zoltan
2017-04-20 20:43 ` [Qemu-devel] [PATCH v5 07/13] sm501: Fix device endianness BALATON Zoltan
2017-04-20 21:47   ` Peter Maydell
2017-04-20 20:43 ` [Qemu-devel] [PATCH v5 02/13] sm501: Use defined constants instead of literal values where available BALATON Zoltan
2017-04-20 20:43 ` [Qemu-devel] [PATCH v5 11/13] sm501: Add some more missing registers BALATON Zoltan
2017-04-20 20:43 ` [Qemu-devel] [PATCH v5 06/13] sm501: Add emulation of chip connected via PCI BALATON Zoltan
2017-04-20 20:43 ` [Qemu-devel] [PATCH v5 09/13] sm501: Misc clean ups BALATON Zoltan
2017-04-20 20:43 ` [Qemu-devel] [PATCH v5 10/13] sm501: Add support for panel layer BALATON Zoltan
2017-04-20 20:43 ` [Qemu-devel] [PATCH v5 01/13] sm501: Fixed code style and a few typos in comments BALATON Zoltan
2017-04-20 20:43 ` [Qemu-devel] [PATCH v5 05/13] sm501: Get rid of base address in draw_hwc_line BALATON Zoltan

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=20170421002451.GE13992@umbus.fritz.box \
    --to=david@gibson.dropbear.id.au \
    --cc=aurelien@aurel32.net \
    --cc=balaton@eik.bme.hu \
    --cc=magnus.damm@gmail.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-trivial@nongnu.org \
    /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).