From owner-cvs-src@FreeBSD.ORG Fri Oct 6 18:59:28 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6367C16A415; Fri, 6 Oct 2006 18:59:28 +0000 (UTC) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E62B243D62; Fri, 6 Oct 2006 18:59:27 +0000 (GMT) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k96IxR2e077928; Fri, 6 Oct 2006 18:59:27 GMT (envelope-from ariff@repoman.freebsd.org) Received: (from ariff@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k96IxRUI077927; Fri, 6 Oct 2006 18:59:27 GMT (envelope-from ariff) Message-Id: <200610061859.k96IxRUI077927@repoman.freebsd.org> From: Ariff Abdullah Date: Fri, 6 Oct 2006 18:59:27 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/sound/pci/hda hdac.c hdac_private.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Oct 2006 18:59:28 -0000 ariff 2006-10-06 18:59:27 UTC FreeBSD src repository Modified files: sys/dev/sound/pci/hda hdac.c hdac_private.h Log: - Fix wrong id for ALC882, add ALC883 id. - Add support for the Conexant Waikiki/CX20551-22, found in most Toshiba P100 series laptops. Despite of growing urban legend of "unsupported Conexant", this codec is fully supported in this driver. Note: Toshiba P100 has broken (acpi) BIOS, thus rendering its soundchip useless. Please disable ACPI, or get BIOS updates (if any). Found/tested by: Vulpes Velox URL: http://lists.freebsd.org/pipermail/freebsd-multimedia/2006-September/004896.html - Parser cleanups to handle possible oss/mixer collision. Found after parsing Conexant Waikiki nodes. - Increase resilient against resource failure during attach/detach. - Implement simple config through hint.pcm..config. Supported options: gpio0 (default on Acer), gpio1, gpio2, softpcmvol, fixedrate (default), forcestereo (default) * Option prefixed with "no" (such as "nofixedrate") will do the opposite. * Options can be separated using space " " or comma ",". * The "no" option will take precedence over anything else. Example: hint.pcm.0.config="gpio2,nofixedrate,noforcestereo,nogpio0,softpcmvol" hint.pcm.0.config="softpcmvol noforcestereo" Revision Changes Path 1.4 +484 -278 src/sys/dev/sound/pci/hda/hdac.c 1.2 +0 -3 src/sys/dev/sound/pci/hda/hdac_private.h