From: Rajesh Shah <rajesh.shah@intel.com>
To: Brice Goglin <Brice.Goglin@ens-lyon.org>
Cc: Rajesh Shah <rajesh.shah@intel.com>,
Dominik Brodowski <linux@dominikbrodowski.net>,
Andrew Morton <akpm@osdl.org>,
Linux Kernel <linux-kernel@vger.kernel.org>
Subject: Re: 2.6.12-mm1
Date: Thu, 23 Jun 2005 10:05:36 -0700 [thread overview]
Message-ID: <20050623100536.A21592@unix-os.sc.intel.com> (raw)
In-Reply-To: <42BA55D2.7020900@ens-lyon.org>; from Brice.Goglin@ens-lyon.org on Thu, Jun 23, 2005 at 08:25:22AM +0200
On Thu, Jun 23, 2005 at 08:25:22AM +0200, Brice Goglin wrote:
>
> You're right. I reverted this one two days ago and got a working
> system. Actually, the system had other problems (got an oops when
> reading /proc/ioports). But they might be caused by dependencies
> between Grekgh's PCI patches that were still applied and and the
> one I removed, right ?
> Anyway, this fixed my maestro3 divide error and the yenta hang
> during boot.
>
Reverting the host bridge patch should not affect /proc/ioports,
that's probably something different. I'd like to see what your
ACPI tables look like and what the firmware reported for host
bridge resources. Can you send me the system DSDT
(cat /proc/acpi/dsdt > dsdt.hex). Also, can you apply this debug
hack patch to 2.6.12-mm1 and send me the dmesg output? You will
have to change your .config (e.g. disable yenta support?) to avoid
the system hang you seeing with 2.6.12-mm1 (or, you could capture
debug messages via serial console).
Rajesh
---------
Index: linux-2.6.12-mm1/arch/i386/pci/acpi.c
===================================================================
--- linux-2.6.12-mm1.orig/arch/i386/pci/acpi.c
+++ linux-2.6.12-mm1/arch/i386/pci/acpi.c
@@ -9,6 +9,13 @@ static void inline
add_resource_range(int idx, struct pci_bus *bus,
struct acpi_resource_address64 *addr, unsigned long flags)
{
+ printk("%s: adding resource %Lx:%Lx, flags %lx @ bus %x:%x\n",
+ __FUNCTION__,
+ addr->min_address_range,
+ addr->max_address_range,
+ flags,
+ bus->number,
+ idx);
memset(bus->resource[idx], 0, sizeof(*(bus->resource[idx])));
bus->resource[idx]->name = bus->name;
bus->resource[idx]->start = addr->min_address_range;
@@ -72,10 +79,28 @@ add_resources(struct acpi_resource *acpi
/* Consolidate adjacent resource ranges */
if (busr->end + 1 == address.min_address_range) {
busr->end = address.max_address_range;
+ printk("%s: consolidating %Lx:%Lx flags %lx for bus %x:%x, new %lx:%lx\n",
+ __FUNCTION__,
+ address.min_address_range,
+ address.max_address_range,
+ flags,
+ bus->number,
+ idx,
+ busr->start,
+ busr->end);
return AE_OK;
}
if (address.max_address_range + 1 == busr->start) {
busr->start = address.min_address_range;
+ printk("%s: consolidating %Lx:%Lx flags %lx for bus %x:%x, new %lx:%lx\n",
+ __FUNCTION__,
+ address.min_address_range,
+ address.max_address_range,
+ flags,
+ bus->number,
+ idx,
+ busr->start,
+ busr->end);
return AE_OK;
}
/* Consolidate overlapping resource ranges */
@@ -87,6 +112,15 @@ add_resources(struct acpi_resource *acpi
busr->start = address.min_address_range;
if (address.max_address_range > busr->end)
busr->end = address.max_address_range;
+ printk("%s: consolidating %Lx:%Lx flags %lx for bus %x:%x, new %lx:%lx\n",
+ __FUNCTION__,
+ address.min_address_range,
+ address.max_address_range,
+ flags,
+ bus->number,
+ idx,
+ busr->start,
+ busr->end);
return AE_OK;
}
printk(KERN_WARNING
@@ -125,6 +159,25 @@ verify_root_windows(struct pci_bus *bus)
return 0;
}
+static void dump_bridge_resources(struct pci_bus *bus)
+{
+ int i;
+ unsigned long type_mask = IORESOURCE_IO | IORESOURCE_MEM;
+
+ printk("%s: Bus resources for bus %s, num %2x, prim %2x, sec %2x, sub %2x\n",
+ __FUNCTION__,
+ ((bus->self)? pci_name(bus->self): "root"),
+ bus->number,
+ bus->primary, bus->secondary, bus->subordinate);
+ for (i=0; i<PCI_BUS_NUM_RESOURCES; i++) {
+ struct resource *res = bus->resource[i];
+ if ((res) && (res->flags & type_mask)) {
+ printk("\tbus resouce #%2x, start %lx, end %lx, flags %lx\n",
+ i, res->start, res->end, res->flags);
+ }
+ }
+}
+
static void __devinit
pcibios_setup_root_windows(struct pci_bus *bus, acpi_handle handle)
{
@@ -141,6 +194,8 @@ pcibios_setup_root_windows(struct pci_bu
status = acpi_walk_resources(handle, METHOD_NAME__CRS,
add_resources, bus);
if (ACPI_FAILURE(status) || !verify_root_windows(bus)) {
+ printk("%s: Falling back to default host bridge resources\n",
+ __FUNCTION__);
printk(KERN_WARNING
"PCI: Falling back to default host bridge resources\n");
for (i = 0; i < PCI_BUS_NUM_RESOURCES; i++) {
@@ -148,6 +203,7 @@ pcibios_setup_root_windows(struct pci_bu
bus->resource[i] = bres[i];
}
}
+ dump_bridge_resources(bus);
}
next prev parent reply other threads:[~2005-06-23 17:06 UTC|newest]
Thread overview: 64+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-06-20 6:30 2.6.12-mm1 Andrew Morton
2005-06-20 6:57 ` 2.6.12-mm1 Benjamin Herrenschmidt
2005-06-20 8:54 ` 2.6.12-mm1 Ethan Benson
2005-06-20 7:46 ` 2.6.12-mm1 Brice Goglin
2005-06-20 8:14 ` 2.6.12-mm1 Dominik Brodowski
2005-06-20 8:49 ` 2.6.12-mm1 Brice Goglin
[not found] ` <20050620085449.GA32330@isilmar.linta.de>
2005-06-20 13:11 ` 2.6.12-mm1 Brice Goglin
2005-06-22 23:34 ` 2.6.12-mm1 Rajesh Shah
2005-06-23 6:25 ` 2.6.12-mm1 Brice Goglin
2005-06-23 17:05 ` Rajesh Shah [this message]
2005-06-23 18:09 ` 2.6.12-mm1 Brice Goglin
2005-06-23 20:32 ` 2.6.12-mm1 Rajesh Shah
2005-06-23 21:07 ` 2.6.12-mm1 Brice Goglin
2005-06-23 21:33 ` 2.6.12-mm1 Brice Goglin
2005-06-20 7:59 ` 2.6.12-mm1 Brice Goglin
2005-06-21 12:40 ` 2.6.12-mm1 Brice Goglin
2005-06-21 16:27 ` 2.6.12-mm1 Takashi Iwai
2005-06-21 16:32 ` 2.6.12-mm1 Takashi Iwai
2005-06-21 17:02 ` 2.6.12-mm1 Brice Goglin
2005-06-21 17:16 ` 2.6.12-mm1 Takashi Iwai
2005-06-21 19:39 ` 2.6.12-mm1 Brice Goglin
2005-06-22 10:10 ` 2.6.12-mm1 Takashi Iwai
2005-06-20 9:48 ` [patch] 2.6.12-mm1: saa7134-core.c compile error Adrian Bunk
2005-06-20 22:19 ` Michael Krufky
2005-06-20 11:36 ` [PATCH] bttv fix [was: 2.6.12-mm1] J.A. Magallon
2005-06-20 11:38 ` 2.6.12-mm1 J.A. Magallon
2005-06-20 16:36 ` 2.6.12-mm1 Jeff Garzik
2005-06-20 22:35 ` 2.6.12-mm1 J.A. Magallon
2005-06-20 12:32 ` [PATCH] Fix Reiser4 Dependencies Andrew James Wade
2005-06-20 18:26 ` Hans Reiser
2005-06-20 20:44 ` Andrew James Wade
2005-06-21 11:27 ` Edward Shishkin
2005-06-21 18:47 ` Hans Reiser
2005-06-21 19:26 ` Andrew James Wade
2005-06-22 8:56 ` Edward Shishkin
2005-06-22 8:39 ` Edward Shishkin
2005-06-20 13:14 ` 2.6.12-mm1 Andy Whitcroft
2005-06-21 22:55 ` 2.6.12-mm1 Greg KH
2005-06-22 9:23 ` 2.6.12-mm1 Andy Whitcroft
2005-06-22 10:04 ` 2.6.12-mm1 Ivan Kokshaysky
2005-06-20 13:21 ` 2.6.12-mm1: Kernel BUG at "fs/open.c":935 Rafael J. Wysocki
2005-06-20 13:54 ` Dipankar Sarma
2005-06-20 14:05 ` Rafael J. Wysocki
2005-06-20 17:38 ` 2.6.12-mm1: drivers/misc/ibmasm/ compile error Adrian Bunk
2005-06-20 20:24 ` Andrew Morton
2005-06-20 18:29 ` 2.6.12-mm1 Jean Delvare
2005-06-20 20:41 ` 2.6.12-mm1 Andrew Morton
2005-06-20 21:11 ` 2.6.12-mm1 Jean Delvare
2005-06-20 21:23 ` 2.6.12-mm1 Andrew Morton
2005-06-20 21:42 ` 2.6.12-mm1 Jean Delvare
2005-06-20 21:53 ` 2.6.12-mm1 Andrew Morton
2005-06-21 20:06 ` 2.6.12-mm1 Mauro Carvalho Chehab
2005-06-21 21:25 ` 2.6.12-mm1 Jean Delvare
2005-06-20 18:39 ` gregkh-usb-usb-isp116x-hcd-add.patch (was 2.6.12-mm1) Alexey Dobriyan
2005-06-20 22:15 ` 2.6.12-mm1 J.A. Magallon
2005-06-20 22:34 ` iptables bug (was: Re: 2.6.12-mm1) Andrew Morton
2005-06-20 23:39 ` iptables bug Patrick McHardy
2005-06-21 19:21 ` Stephen Jones
2005-06-22 1:52 ` Patrick McHardy
2005-06-21 22:09 ` [PATCH] more signed char cleanups in scripts J.A. Magallon
2005-06-21 22:18 ` Andrew Morton
2005-06-21 22:59 ` J.A. Magallon
2005-06-22 11:46 ` Paulo Marques
2005-06-22 0:05 ` Lee Revell
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=20050623100536.A21592@unix-os.sc.intel.com \
--to=rajesh.shah@intel.com \
--cc=Brice.Goglin@ens-lyon.org \
--cc=akpm@osdl.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@dominikbrodowski.net \
/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