From owner-freebsd-current@FreeBSD.ORG Thu Dec 3 02:23:23 2009 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2AA011065670; Thu, 3 Dec 2009 02:23:23 +0000 (UTC) (envelope-from lsantagostini@gmail.com) Received: from mail-iw0-f198.google.com (mail-iw0-f198.google.com [209.85.223.198]) by mx1.freebsd.org (Postfix) with ESMTP id DE29E8FC18; Thu, 3 Dec 2009 02:23:22 +0000 (UTC) Received: by iwn36 with SMTP id 36so573974iwn.3 for ; Wed, 02 Dec 2009 18:23:22 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type; bh=OyflaQTvAUrp0R28M5MjWIeNzZhYqBaVHgCnqflKXNY=; b=fEyv2xqZSBpBb5tFKTZhulZ9LLMXNpWi3W5ZQz6/p2GsY3nU79W54spUHvvy+wkFg4 4af/PrZ3MB6hP1bd0ee3YhEn0jpn5EQeNW/fjNyn1foypzRP3hnRgHIxJNtyEvWaxi5t IEI02fCbwfpZjJAxDMoGRH5D1CXIrNX3KJ1gQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=rBLO+XmxsE6agln4XV0zzrDtnjDRM4FrJ19F6HkNK0ZoNKrREzbA+6GGnQRFYXfTpZ 1SYni2xab5vCUCwGjujER6HIqyCYJJUfrksHjMF0kjVysdOOkZOwLFivlmuP+miQHufY sMgVc7N7kQonL9jyZKwUdilX+ghnLkWAk4D4s= MIME-Version: 1.0 Received: by 10.231.48.210 with SMTP id s18mr223928ibf.3.1259805470489; Wed, 02 Dec 2009 17:57:50 -0800 (PST) Date: Thu, 3 Dec 2009 01:57:50 +0000 Message-ID: <9ab7eeeb0912021757g5f60a7edw3256e60e745c0c35@mail.gmail.com> From: Leonardo Santagostini To: freebsd-stable@freebsd.org, freebsd-current@freebsd.org Content-Type: text/plain; charset=UTF-8 Cc: Subject: Could you please fix this ? X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Dec 2009 02:23:23 -0000 Hello everybody, I was facing one big problem, i have a notebook, which is an Acer Aspire 5920. If you like i can send to you my messages file. Which is: Intel(R) Core(TM)2 Duo CPU T5550 @ 1.83GHz (1833.48-MHz 686-class CPU) Intel(R) PRO/Wireless 3945ABG Broadcom NetLink Gigabit Ethernet Controller 2 Gigs RAM 160 Gigs SATA The point was: With ACPI disabled, i managed to boot but without WIFI; and with ACPI enabled, the boot process hanged up all times. I fixed this adding if (device_get_unit(dev)==2){ pci_write_config(dev, PCIR_COMMAND, PCIM_CMD_MEMEN | PCIM_CMD_PORTEN, 1); pci_enable_busmaster(dev); pci_write_config(dev, PCIR_IOBASEL_1, 0xf0, 1); pci_write_config(dev, PCIR_MEMBASE_1, 0xf020, 2); pci_write_config(dev, PCIR_MEMLIMIT_1, 0xf020, 2); pci_write_config(dev, PCIR_PMBASEL_1, 0xfff1, 2); } if (device_get_unit(dev)==3){ pci_write_config(dev, PCIR_COMMAND, PCIM_CMD_MEMEN | PCIM_CMD_PORTEN, 1); pci_enable_busmaster(dev); pci_write_config(dev, PCIR_IOBASEL_1, 0xf0, 1); pci_write_config(dev, PCIR_MEMBASE_1, 0xf030, 2); pci_write_config(dev, PCIR_MEMLIMIT_1, 0xf030, 2); pci_write_config(dev, PCIR_PMBASEL_1, 0xfff1, 2); } to /usr/src/sys/dev/acpica/acpi_pcib_pci.c running on a 8.0-RELEASE I was able to fix it by my way but many people cant do it, so, i would really appreciate if you can add this piece of code. Thanks, kind regards Leonardo