| To: | Ralf Baechle <ralf@linux-mips.org> |
|---|---|
| Subject: | Re: [PATCH -queue v0 4/6] [loongson] add basic fuloong2f support |
| From: | Wu Zhangjin <wuzhangjin@gmail.com> |
| Date: | Fri, 06 Nov 2009 16:34:41 +0800 |
| Cc: | linux-mips@linux-mips.org, LKML <linux-kernel@vger.kernel.org>, huhb@lemote.com, yanh@lemote.com, Zhang Le <r0bertz@gentoo.org>, Thomas Gleixner <tglx@linutronix.de>, Nicholas Mc Guire <der.herr@hofr.at>, zhangfx@lemote.com, liujl@lemote.com |
| Dkim-signature: | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:subject:from:reply-to:to:cc :in-reply-to:references:content-type:organization:date:message-id :mime-version:x-mailer:content-transfer-encoding; bh=SICRChQB/BsL72aoh0mkO5ZKN4SCJTldKS+7XYaaQpk=; b=S/fqkumfaljk47dV+Z81IGK40dDzzFhSUBiTan7qd4OFts1PL1MwVTPdmTkpydLA47 ExLO6UswPXH5dpqaJO5ESuRGi6AU3q3egeqRtR/JY2okU5acPawXi5A2+8vls32W1l8L 27VSOk5qsGlSQtsiJcOSH9152X2GWEPVQV0CI= |
| Domainkey-signature: | a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=subject:from:reply-to:to:cc:in-reply-to:references:content-type :organization:date:message-id:mime-version:x-mailer :content-transfer-encoding; b=fQkAQYdg/Gp+VLroKUEVJGTzQQ9iPZve2cK2Rf+g4doWjVsjj6JIN+pMPSUlaViQh0 I8503DJKn1EqgrHLrqwD8zLO//8Z2BnHsOMaqAWg3h+iWGczqZnt2943PFB7PBJDlmxi YAIevvNgc/kaQuTpPUZo49JtV8ue6I5L3WfpE= |
| In-reply-to: | <20091105131603.GA18232@linux-mips.org> |
| Organization: | DSLab, Lanzhou University, China |
| Original-recipient: | rfc822;linux-mips@linux-mips.org |
| References: | <cover.1257325319.git.wuzhangjin@gmail.com> <0f805f7d12c5a7cbcc125ba4a1b70113ec2047a6.1257325319.git.wuzhangjin@gmail.com> <20091105131603.GA18232@linux-mips.org> |
| Reply-to: | wuzhangjin@gmail.com |
| Sender: | linux-mips-bounce@linux-mips.org |
Hi,
On Thu, 2009-11-05 at 14:16 +0100, Ralf Baechle wrote:
[...]
> > +static int mach_i8259_irq(void)
> > +{
> > + int irq, isr, imr;
> > +
> > + irq = -1;
> > +
> > + if ((LOONGSON_INTISR & LOONGSON_INTEN) & LOONGSON_INT_BIT_INT0) {
> > + imr = inb(0x21) | (inb(0xa1) << 8);
> > + isr = inb(0x20) | (inb(0xa0) << 8);
> > + isr &= ~0x4; /* irq2 for cascade */
> > + isr &= ~imr;
> > + irq = ffs(isr) - 1;
> > + }
>
> Any reason why you're not using i8259_irq() from <asm/i8259.h> here?
> That function not only gets the locking right, it also minimizes the number
> of accesses to the i8259 - which even on modern silicon can be stuningly
> slow.
Just checked it again, seems we can only access the ISR registers, but
even if with this restriction, we can also optimize it to minimize the
number of accesses to the i8259, this is the new version:
+ isr = inb(PIC_MASTER_CMD) &
+ ~inb(PIC_MASTER_IMR) & ~(1 << PIC_CASCADE_IR);
+ if (!isr)
+ isr = (inb(PIC_SLAVE_CMD) & ~inb(PIC_SLAVE_IMR)) << 8;
Will resend it with this version.
Thanks,
Wu Zhangjin
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Re: [PATCH -queue v0 4/6] [loongson] add basic fuloong2f support, Ralf Baechle |
|---|---|
| Next by Date: | Re: [PATCH -queue v0 4/6] [loongson] add basic fuloong2f support, Wu Zhangjin |
| Previous by Thread: | Re: [PATCH -queue v0 4/6] [loongson] add basic fuloong2f support, Wu Zhangjin |
| Next by Thread: | [PATCH -queue v0 5/6] [loongson] rtc: enable legacy RTC driver on fuloong2f, Wu Zhangjin |
| Indexes: | [Date] [Thread] [Top] [All Lists] |