aboutsummaryrefslogtreecommitdiff
path: root/hw/occ.c
diff options
context:
space:
mode:
authorBenjamin Herrenschmidt <benh@kernel.crashing.org>2015-02-18 14:57:28 +1100
committerStewart Smith <stewart@linux.vnet.ibm.com>2015-02-18 15:40:42 +1100
commit789c171a6783918783855eb195a9502dfe3791ba (patch)
tree37f7b2bc1e1832e5db438a200e69f8b33ade1a4e /hw/occ.c
parent0aecda9cb221649e184fdfb9c9cb11be37d60f51 (diff)
downloadskiboot-789c171a6783918783855eb195a9502dfe3791ba.zip
skiboot-789c171a6783918783855eb195a9502dfe3791ba.tar.gz
skiboot-789c171a6783918783855eb195a9502dfe3791ba.tar.bz2
Replace is_mambo_chip with a better chip quirk mechanism
And add some basic qemu quirks Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org> Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'hw/occ.c')
-rw-r--r--hw/occ.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/occ.c b/hw/occ.c
index 1e47b8f..6dbbe6b 100644
--- a/hw/occ.c
+++ b/hw/occ.c
@@ -538,8 +538,8 @@ static struct fsp_client fsp_occ_client = {
void occ_send_dummy_interrupt(void)
{
- /* Mambo chip and P7 don't do this */
- if (is_mambo_chip || proc_gen != proc_gen_p8)
+ /* Emulators and P7 doesn't do this */
+ if (proc_gen != proc_gen_p8 || chip_quirk(QUIRK_NO_OCC_IRQ))
return;
xscom_writeme(OCB_OCI_OCCMISC_OR,
OCB_OCI_OCIMISC_IRQ |