All of lore.kernel.org
 help / color / mirror / Atom feed
From: Grant Grundler <iod00d@hp.com>
To: linux-ia64@vger.kernel.org
Subject: Re: [PATCH] 2.6.1 enable PIOW/DMAR relaxed ordering on ZX1
Date: Mon, 26 Jan 2004 18:23:47 +0000	[thread overview]
Message-ID: <20040126182347.GA15242@cup.hp.com> (raw)
In-Reply-To: <20040123024302.GD24857@cup.hp.com>

On Fri, Jan 23, 2004 at 10:06:58PM -0800, David Mosberger wrote:
> I'm not sure Tony's tree is ready for prime-time yet.  Could you
> please diff against my tree instead (linux-ia64-2.5)?

yes - sorry. Patch appended.

> I'd have merged
> the patch by hand, but the context in the patch you posted doesn't
> look like anything that appears in the current sba_iommu.c.

hrm...they shouldn't be that different.
OIC.  Some of the DMA hint register support was removed.
If you want to finish that job, remove the definition and references
to hint_mask_pdir and hint_shift_pdir. I'll maintain DMA hints
as a seperate patch (2.4 only so far) until I have data it's useful.

thanks,
grant


=== arch/ia64/hp/common/sba_iommu.c 1.35 vs edited ==--- 1.35/arch/ia64/hp/common/sba_iommu.c	Mon Jan 12 08:02:23 2004
+++ edited/arch/ia64/hp/common/sba_iommu.c	Mon Jan 26 08:47:02 2004
@@ -158,6 +158,10 @@
 #define IOC_TCNFG	0x318
 #define IOC_PDIR_BASE	0x320
 
+#define IOC_ROPE0_CFG	0x500
+#define   IOC_ROPE_AO	  0x10	/* Allow "Relaxed Ordering" */
+
+
 /* AGP GART driver looks for this */
 #define ZX1_SBA_IOMMU_COOKIE	0x0000badbadc0ffeeUL
 
@@ -1361,6 +1365,7 @@
 #ifdef FULL_VALID_PDIR
 	unsigned long index;
 #endif
+	unsigned int i;
 
 	/*
 	** Firmware programs the base and size of a "safe IOVA space"
@@ -1455,6 +1460,18 @@
 	/* Enable IOVA translation */
 	WRITE_REG(ioc->ibase | 1, ioc->ioc_hpa + IOC_IBASE);
 	READ_REG(ioc->ioc_hpa + IOC_IBASE);
+
+	/* Clear ROPE(N)_CONFIG AO bit.
+	** Disables "NT Ordering" (~= !"Relaxed Ordering")
+	** Overrides bit 1 in DMA Hint Sets.
+	** Improves netperf UDP_STREAM by ~10% for tg3 on bcm5701.
+	*/
+	for (i=0; i<(8*8); i+=8) {
+		unsigned long rope_config;
+		rope_config = READ_REG(ioc->ioc_hpa + IOC_ROPE0_CFG + i);
+		rope_config &= ~IOC_ROPE_AO;
+		WRITE_REG(rope_config, ioc->ioc_hpa + IOC_ROPE0_CFG + i);
+	}
 }
 
 static void __init

      parent reply	other threads:[~2004-01-26 18:23 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-01-23  2:43 [PATCH] 2.6.1 enable PIOW/DMAR relaxed ordering on ZX1 Grant Grundler
2004-01-24  6:06 ` David Mosberger
2004-01-26 16:26 ` Luck, Tony
2004-01-26 18:23 ` Grant Grundler [this message]

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=20040126182347.GA15242@cup.hp.com \
    --to=iod00d@hp.com \
    --cc=linux-ia64@vger.kernel.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.