qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Philippe Mathieu-Daudé" <philmd@redhat.com>
To: Thomas Huth <thuth@redhat.com>,
	Paolo Bonzini <pbonzini@redhat.com>,
	qemu-devel@nongnu.org
Cc: "James Hogan" <jhogan@kernel.org>,
	"Yang Zhong" <yang.zhong@intel.com>,
	"Aleksandar Markovic" <amarkovic@wavecomp.com>,
	"Aleksandar Rikalo" <arikalo@wavecomp.com>,
	"Paul Burton" <pburton@wavecomp.com>,
	"Aurelien Jarno" <aurelien@aurel32.net>,
	"Hervé Poussineau" <hpoussin@reactos.org>,
	"Philippe Mathieu-Daudé" <philmd@redhat.com>
Subject: [Qemu-devel] [PATCH v3 4/7] hw/mips: Remove the redundant CONFIG_MIPS_ITU Makefile variable
Date: Mon, 11 Mar 2019 01:56:15 +0100	[thread overview]
Message-ID: <20190311005618.19007-5-philmd@redhat.com> (raw)
In-Reply-To: <20190311005618.19007-1-philmd@redhat.com>

The Inter-Thread Communication Unit (ITU, introduced in commit
34fa7e83e11) is part of the Coherent Processing System (CPS),
as describe in commit 408294352ad:

    Make ITU available in the system if CPU supports multithreading
    and is part of CPS.

Replate the CONFIG_MIPS_ITU variable by the CONFIG_MIPS_CPS one.

Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
---
 default-configs/mips-softmmu-common.mak | 1 -
 hw/misc/Kconfig                         | 3 ---
 hw/misc/Makefile.objs                   | 2 +-
 3 files changed, 1 insertion(+), 5 deletions(-)

diff --git a/default-configs/mips-softmmu-common.mak b/default-configs/mips-softmmu-common.mak
index 2ca57bfee1..c5b148b1c6 100644
--- a/default-configs/mips-softmmu-common.mak
+++ b/default-configs/mips-softmmu-common.mak
@@ -29,7 +29,6 @@ CONFIG_I8259=y
 CONFIG_MC146818RTC=y
 CONFIG_EMPTY_SLOT=y
 CONFIG_MIPS_CPS=y
-CONFIG_MIPS_ITU=y
 CONFIG_R4K=y
 CONFIG_MALTA=y
 CONFIG_MIPSSIM=y
diff --git a/hw/misc/Kconfig b/hw/misc/Kconfig
index 2c60be99bc..3125cf86f2 100644
--- a/hw/misc/Kconfig
+++ b/hw/misc/Kconfig
@@ -80,9 +80,6 @@ config IMX
 config STM32F2XX_SYSCFG
     bool
 
-config MIPS_ITU
-    bool
-
 config MPS2_FPGAIO
     bool
 
diff --git a/hw/misc/Makefile.objs b/hw/misc/Makefile.objs
index c71e07ae35..22565d72af 100644
--- a/hw/misc/Makefile.objs
+++ b/hw/misc/Makefile.objs
@@ -59,7 +59,7 @@ obj-$(CONFIG_ZYNQ) += zynq-xadc.o
 obj-$(CONFIG_STM32F2XX_SYSCFG) += stm32f2xx_syscfg.o
 obj-$(CONFIG_MIPS_CPS) += mips_cmgcr.o
 obj-$(CONFIG_MIPS_CPS) += mips_cpc.o
-obj-$(CONFIG_MIPS_ITU) += mips_itu.o
+obj-$(CONFIG_MIPS_CPS) += mips_itu.o
 obj-$(CONFIG_MPS2_FPGAIO) += mps2-fpgaio.o
 obj-$(CONFIG_MPS2_SCC) += mps2-scc.o
 
-- 
2.20.1

  parent reply	other threads:[~2019-03-11  0:57 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-03-11  0:56 [Qemu-devel] [PATCH v3 0/7] Kconfig dependencies for MIPS machines (but Malta) Philippe Mathieu-Daudé
2019-03-11  0:56 ` [Qemu-devel] [PATCH v3 1/7] hw/mips: Express dependencies of the MIPSsim machine with Kconfig Philippe Mathieu-Daudé
2019-03-11  0:56 ` [Qemu-devel] [PATCH v3 2/7] hw/mips: Express dependencies of the Jazz " Philippe Mathieu-Daudé
2019-03-11 11:13   ` Aleksandar Markovic
2019-03-11 11:17   ` Thomas Huth
2019-03-11 11:37     ` Philippe Mathieu-Daudé
2019-03-11 11:47       ` Thomas Huth
2019-03-11  0:56 ` [Qemu-devel] [PATCH v3 3/7] hw/mips: Express dependencies of the r4k platform " Philippe Mathieu-Daudé
2019-03-11  6:58   ` Thomas Huth
2019-03-11 11:19     ` Philippe Mathieu-Daudé
2019-03-11  0:56 ` Philippe Mathieu-Daudé [this message]
2019-03-11  0:56 ` [Qemu-devel] [PATCH v3 5/7] hw/mips: Express dependencies of the Boston machine " Philippe Mathieu-Daudé
2019-03-11  0:56 ` [Qemu-devel] [PATCH v3 6/7] hw/pci-host: Use CONFIG_PCI_BONITO to select the Bonito North Bridge Philippe Mathieu-Daudé
2019-03-11 11:11   ` Aleksandar Markovic
2019-03-11  0:56 ` [Qemu-devel] [PATCH v3 7/7] hw/mips: Express dependencies of the Fulong 2E machine with Kconfig Philippe Mathieu-Daudé
2019-03-11 11:10   ` Aleksandar Markovic
2019-03-11 11:25   ` Thomas Huth
2019-03-11 11:50     ` Philippe Mathieu-Daudé
2019-05-27 18:31 ` [Qemu-devel] [PATCH v3 0/7] Kconfig dependencies for MIPS machines (but Malta) Aleksandar Markovic
2019-05-27 21:35   ` Philippe Mathieu-Daudé
2019-05-28  6:49     ` Philippe Mathieu-Daudé
2019-05-28  8:49       ` Aleksandar Markovic
2019-06-30  7:12 ` Aleksandar Markovic
2019-07-01 10:30   ` Philippe Mathieu-Daudé
2019-07-01 10:56     ` Aleksandar Markovic

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=20190311005618.19007-5-philmd@redhat.com \
    --to=philmd@redhat.com \
    --cc=amarkovic@wavecomp.com \
    --cc=arikalo@wavecomp.com \
    --cc=aurelien@aurel32.net \
    --cc=hpoussin@reactos.org \
    --cc=jhogan@kernel.org \
    --cc=pbonzini@redhat.com \
    --cc=pburton@wavecomp.com \
    --cc=qemu-devel@nongnu.org \
    --cc=thuth@redhat.com \
    --cc=yang.zhong@intel.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).