From: Wu Zhangjin <wuzhangjin@gmail.com>
To: linux-mips@linux-mips.org, Ralf Baechle <ralf@linux-mips.org>
Cc: Arnaud Patard <apatard@mandriva.com>,
loongson-dev@googlegroups.com, zhangfx@lemote.com,
yanh@lemote.com, Philippe Vachon <philippe@cowpig.ca>,
Zhang Le <r0bertz@gentoo.org>, Erwan Lerale <erwan@thiscow.com>
Subject: [PATCH 26/30] loongson: flush irq write operation
Date: Sat, 16 May 2009 06:28:47 +0800 [thread overview]
Message-ID: <1242426527.10164.174.camel@falcon> (raw)
>From d0431e4d83ec7f852d631f80aaca4b66586b4db2 Mon Sep 17 00:00:00 2001
From: Wu Zhangjin <wuzhangjin@gmail.com>
Date: Sat, 16 May 2009 04:54:27 +0800
Subject: [PATCH 26/30] loongson: flush irq write operation
read back after write, otherwise, there will be many spurious irqs from
it
---
arch/mips/kernel/i8259.c | 5 +++++
arch/mips/loongson/common/bonito-irq.c | 4 ++++
2 files changed, 9 insertions(+), 0 deletions(-)
diff --git a/arch/mips/kernel/i8259.c b/arch/mips/kernel/i8259.c
index 413bd1d..f7c3a2b 100644
--- a/arch/mips/kernel/i8259.c
+++ b/arch/mips/kernel/i8259.c
@@ -175,12 +175,17 @@ handle_real_irq:
if (irq & 8) {
inb(PIC_SLAVE_IMR); /* DUMMY - (do we need this?) */
outb(cached_slave_mask, PIC_SLAVE_IMR);
+ inb(PIC_SLAVE_IMR);
outb(0x60+(irq&7), PIC_SLAVE_CMD);/* 'Specific EOI' to slave */
+ inb(PIC_SLAVE_CMD);
outb(0x60+PIC_CASCADE_IR, PIC_MASTER_CMD); /* 'Specific EOI' to
master-IRQ2 */
+ inb(PIC_MASTER_CMD);
} else {
inb(PIC_MASTER_IMR); /* DUMMY - (do we need this?) */
outb(cached_master_mask, PIC_MASTER_IMR);
+ inb(PIC_SLAVE_IMR);
outb(0x60+irq, PIC_MASTER_CMD); /* 'Specific EOI to master */
+ inb(PIC_MASTER_CMD);
}
smtc_im_ack_irq(irq);
spin_unlock_irqrestore(&i8259A_lock, flags);
diff --git a/arch/mips/loongson/common/bonito-irq.c
b/arch/mips/loongson/common/bonito-irq.c
index d5a5ae8..cfbeaf5 100644
--- a/arch/mips/loongson/common/bonito-irq.c
+++ b/arch/mips/loongson/common/bonito-irq.c
@@ -36,12 +36,16 @@
static inline void bonito_irq_enable(unsigned int irq)
{
LOONGSON_INTENSET = (1 << (irq - LOONGSON_IRQ_BASE));
+ /* flush the write operation via a following read operation */
+ (void)LOONGSON_INTENSET;
mmiowb();
}
static inline void bonito_irq_disable(unsigned int irq)
{
LOONGSON_INTENCLR = (1 << (irq - LOONGSON_IRQ_BASE));
+ /* flush the write operation via a following read operation */
+ (void)LOONGSON_INTENCLR;
mmiowb();
}
--
1.6.2.1
WARNING: multiple messages have this Message-ID (diff)
From: Wu Zhangjin <wuzhangjin@gmail.com>
To: linux-mips@linux-mips.org, Ralf Baechle <ralf@linux-mips.org>
Cc: Arnaud Patard <apatard@mandriva.com>,
loongson-dev@googlegroups.com, zhangfx@lemote.com,
yanh@lemote.com, Philippe Vachon <philippe@cowpig.ca>,
Zhang Le <r0bertz@gentoo.org>, Erwan Lerale <erwan@thiscow.com>
Subject: [PATCH 26/30] loongson: flush irq write operation
Date: Sat, 16 May 2009 06:28:47 +0800 [thread overview]
Message-ID: <1242426527.10164.174.camel@falcon> (raw)
Message-ID: <20090515222847.fnpQcd5jRUc4mWYPlXrQgl1hAOu9G87dDNzHtoOszdA@z> (raw)
From d0431e4d83ec7f852d631f80aaca4b66586b4db2 Mon Sep 17 00:00:00 2001
From: Wu Zhangjin <wuzhangjin@gmail.com>
Date: Sat, 16 May 2009 04:54:27 +0800
Subject: [PATCH 26/30] loongson: flush irq write operation
read back after write, otherwise, there will be many spurious irqs from
it
---
arch/mips/kernel/i8259.c | 5 +++++
arch/mips/loongson/common/bonito-irq.c | 4 ++++
2 files changed, 9 insertions(+), 0 deletions(-)
diff --git a/arch/mips/kernel/i8259.c b/arch/mips/kernel/i8259.c
index 413bd1d..f7c3a2b 100644
--- a/arch/mips/kernel/i8259.c
+++ b/arch/mips/kernel/i8259.c
@@ -175,12 +175,17 @@ handle_real_irq:
if (irq & 8) {
inb(PIC_SLAVE_IMR); /* DUMMY - (do we need this?) */
outb(cached_slave_mask, PIC_SLAVE_IMR);
+ inb(PIC_SLAVE_IMR);
outb(0x60+(irq&7), PIC_SLAVE_CMD);/* 'Specific EOI' to slave */
+ inb(PIC_SLAVE_CMD);
outb(0x60+PIC_CASCADE_IR, PIC_MASTER_CMD); /* 'Specific EOI' to
master-IRQ2 */
+ inb(PIC_MASTER_CMD);
} else {
inb(PIC_MASTER_IMR); /* DUMMY - (do we need this?) */
outb(cached_master_mask, PIC_MASTER_IMR);
+ inb(PIC_SLAVE_IMR);
outb(0x60+irq, PIC_MASTER_CMD); /* 'Specific EOI to master */
+ inb(PIC_MASTER_CMD);
}
smtc_im_ack_irq(irq);
spin_unlock_irqrestore(&i8259A_lock, flags);
diff --git a/arch/mips/loongson/common/bonito-irq.c
b/arch/mips/loongson/common/bonito-irq.c
index d5a5ae8..cfbeaf5 100644
--- a/arch/mips/loongson/common/bonito-irq.c
+++ b/arch/mips/loongson/common/bonito-irq.c
@@ -36,12 +36,16 @@
static inline void bonito_irq_enable(unsigned int irq)
{
LOONGSON_INTENSET = (1 << (irq - LOONGSON_IRQ_BASE));
+ /* flush the write operation via a following read operation */
+ (void)LOONGSON_INTENSET;
mmiowb();
}
static inline void bonito_irq_disable(unsigned int irq)
{
LOONGSON_INTENCLR = (1 << (irq - LOONGSON_IRQ_BASE));
+ /* flush the write operation via a following read operation */
+ (void)LOONGSON_INTENCLR;
mmiowb();
}
--
1.6.2.1
next reply other threads:[~2009-05-15 22:29 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-05-15 22:28 Wu Zhangjin [this message]
2009-05-15 22:28 ` [PATCH 26/30] loongson: flush irq write operation Wu Zhangjin
2009-05-18 16:36 ` Ralf Baechle
2009-05-19 2:37 ` yanh
2009-05-19 16:01 ` Ralf Baechle
2009-05-20 2:28 ` yanh
2009-05-20 3:07 ` yanh
2009-05-20 7:07 ` Ralf Baechle
2009-05-20 7:58 ` yanh
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=1242426527.10164.174.camel@falcon \
--to=wuzhangjin@gmail.com \
--cc=apatard@mandriva.com \
--cc=erwan@thiscow.com \
--cc=linux-mips@linux-mips.org \
--cc=loongson-dev@googlegroups.com \
--cc=philippe@cowpig.ca \
--cc=r0bertz@gentoo.org \
--cc=ralf@linux-mips.org \
--cc=yanh@lemote.com \
--cc=zhangfx@lemote.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