From owner-freebsd-questions@FreeBSD.ORG Sun Jul 11 14:38:31 2010 Return-Path: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2DDE7106564A for ; Sun, 11 Jul 2010 14:38:31 +0000 (UTC) (envelope-from bf1783@googlemail.com) Received: from mail-ww0-f50.google.com (mail-ww0-f50.google.com [74.125.82.50]) by mx1.freebsd.org (Postfix) with ESMTP id B9B888FC0C for ; Sun, 11 Jul 2010 14:38:30 +0000 (UTC) Received: by wwe15 with SMTP id 15so1039529wwe.31 for ; Sun, 11 Jul 2010 07:38:29 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:mime-version:received:received:reply-to:date :message-id:subject:from:to:cc:content-type; bh=9Z+YcbHTOg0SCu/b3/WJfTMCcw6MItpGcw1FYbryk7w=; b=TgWF2z1KB77yhA+M9uZ/AFS4RwlqjPKuvnKuKDIXTKnfh8AWEuEM+BbYtZfwe9FF+e lD9n36kRg+p0NIHQd1Be+OPe5aWoY0ESi0i79RCCSQTLc7uH0cC3eKOHgUU5cUWtvtO/ +px69x8VsVaupnurGrAp4qThKy5N0NbiI5mp0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=mime-version:reply-to:date:message-id:subject:from:to:cc :content-type; b=J9TQf6p548gt5mzrdn4S+KREKnR72++cTZ8/hvldlpLm1fop3DnKm3gZNhy0SVzzl3 i/3AU2v8QtrPiYuzqS9qPgWK4cSiDcKk7PiI+z3dy5GpcwiqIkk7qnPV5ny/zyZH+Hdm FQDEm8qq35Y62XTf+4TPiZKYtN4JaWKNFZM8k= MIME-Version: 1.0 Received: by 10.216.145.194 with SMTP id p44mr441723wej.82.1278859109610; Sun, 11 Jul 2010 07:38:29 -0700 (PDT) Received: by 10.216.171.10 with HTTP; Sun, 11 Jul 2010 07:38:29 -0700 (PDT) Date: Sun, 11 Jul 2010 14:38:29 +0000 Message-ID: From: "b. f." To: freebsd-questions@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1 Cc: 001 Subject: Re: Har X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: bf1783@gmail.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jul 2010 14:38:31 -0000 >My hdd is using UDMA33 under PC-BSD (which uses a FreeBSD kernel). The >Nvidia SATA chipset seems to be detected, but isn't used! I hope this >is easily solvable because my laptop becomes really slow when the hdd >is used now. It seems to be using UDMA133, which isn't all _that_ slow. :) But of course SATA would be better, especially if your chipset supports features like NCQ. In order to use SATA: (a) hardware and your BIOS have to support AHCI (because the FreeBSD developers haven't taken the time to support most SATA hardware that uses proprietary non-AHCI interfaces); (b) your kernel has to contain the ahci(4) driver (or the older ata(4) drivers that have been built with the ATA_CAM kernel option); and (c) your hardware has to be recognized by these drivers. You can look at your BIOS setup to try to see if AHCI is enabled, or talk to the manufacturer. You can check the output of "kldstat -v" or talk to the PC-BSD support team to see if you have the proper drivers. And you can look at the output of "pciconf -lv" to check information about your hardware, and look at the subclass field, or compare the chip numbers to the list of supported hardware in the source code of the drivers, like: /usr/src/sys/dev/ahci/ahci.c /usr/src/sys/dev/ata/chipsets/ata-nvidia.c b.