From: Jun Sun <jsun@mvista.com>
To: linux-mips-kernel@lists.sourceforge.net, linux-mips@oss.sgi.com,
ralf@oss.sgi.com
Subject: [PATCH] pci_auto handles better when no IO/MEM behind P2P bridge
Date: Thu, 06 Dec 2001 18:08:34 -0800 [thread overview]
Message-ID: <3C1024A2.F3603F6A@mvista.com> (raw)
[-- Attachment #1: Type: text/plain, Size: 21 bytes --]
Any objections?
Jun
[-- Attachment #2: pci-auto-p2p-bridge-noiomem.011205.011206.patch --]
[-- Type: text/plain, Size: 2447 bytes --]
diff -Nru test/arch/mips/kernel/pci_auto.c.orig test/arch/mips/kernel/pci_auto.c
--- test/arch/mips/kernel/pci_auto.c.orig Mon Nov 26 18:22:58 2001
+++ test/arch/mips/kernel/pci_auto.c Thu Dec 6 18:05:04 2001
@@ -252,9 +252,28 @@
int top_bus,
int current_bus,
int pci_devfn,
- int sub_bus)
+ int sub_bus,
+ u32 prescan_pciauto_lower_iospc,
+ u32 prescan_pciauto_lower_memspc)
{
u32 temp;
+ u32 flag;
+
+ /*
+ * [jsun] we cannot simply just write post scan value.
+ * If there is nothing behind P2P bridge, we need to
+ * turn off the IO/MEM addr decoding at all.
+ * The spec recommands to write higher BASE value than the LIMIT
+ * value. I think it works just fine if we disable appropriate
+ * bits in COMMAND register.
+ */
+ flag = PCI_COMMAND_MASTER;
+ if (prescan_pciauto_lower_memspc != pciauto_lower_memspc) {
+ flag |= PCI_COMMAND_MEMORY;
+ }
+ if (prescan_pciauto_lower_iospc != pciauto_lower_iospc) {
+ flag |= PCI_COMMAND_IO;
+ }
/* Configure bus number registers */
early_write_config_byte(hose, top_bus, current_bus, pci_devfn,
@@ -278,8 +297,7 @@
early_read_config_dword(hose, top_bus, current_bus, pci_devfn,
PCI_COMMAND, &temp);
early_write_config_dword(hose, top_bus, current_bus, pci_devfn,
- PCI_COMMAND, temp | PCI_COMMAND_IO | PCI_COMMAND_MEMORY
- | PCI_COMMAND_MASTER);
+ PCI_COMMAND, temp | flag);
}
#define PCIAUTO_IDE_MODE_MASK 0x05
@@ -331,6 +349,9 @@
DBG("\n");
if ((pci_class >> 16) == PCI_CLASS_BRIDGE_PCI) {
+ u32 prescan_pciauto_lower_iospc;
+ u32 prescan_pciauto_lower_memspc;
+
DBG(" Bridge: primary=%.2x, secondary=%.2x\n",
current_bus, sub_bus + 1);
pciauto_prescan_setup_bridge(hose, top_bus, current_bus,
@@ -338,10 +359,16 @@
DBG("Scanning sub bus %.2x, I/O 0x%.8x, Mem 0x%.8x\n",
sub_bus + 1,
pciauto_lower_iospc, pciauto_lower_memspc);
+
+ prescan_pciauto_lower_iospc = pciauto_lower_iospc;
+ prescan_pciauto_lower_memspc = pciauto_lower_memspc;
+
sub_bus = pciauto_bus_scan(hose, top_bus, sub_bus+1);
DBG("Back to bus %.2x\n", current_bus);
pciauto_postscan_setup_bridge(hose, top_bus, current_bus,
- pci_devfn, sub_bus);
+ pci_devfn, sub_bus,
+ prescan_pciauto_lower_iospc,
+ prescan_pciauto_lower_memspc);
continue;
} else if ((pci_class >> 16) == PCI_CLASS_STORAGE_IDE) {
next reply other threads:[~2001-12-07 3:08 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2001-12-07 2:08 Jun Sun [this message]
2001-12-07 2:27 ` [PATCH] pci_auto handles better when no IO/MEM behind P2P bridge Jun Sun
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=3C1024A2.F3603F6A@mvista.com \
--to=jsun@mvista.com \
--cc=linux-mips-kernel@lists.sourceforge.net \
--cc=linux-mips@oss.sgi.com \
--cc=ralf@oss.sgi.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 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.