From owner-freebsd-amd64@FreeBSD.ORG Wed Oct 27 18:44:06 2004 Return-Path: Delivered-To: freebsd-amd64@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A8DB16A4CE for ; Wed, 27 Oct 2004 18:44:06 +0000 (GMT) Received: from mproxy.gmail.com (mproxy.gmail.com [216.239.56.244]) by mx1.FreeBSD.org (Postfix) with ESMTP id E6FB243D31 for ; Wed, 27 Oct 2004 18:44:05 +0000 (GMT) (envelope-from Chris.Trismegistus@gmail.com) Received: by mproxy.gmail.com with SMTP id u33so243335cwc for ; Wed, 27 Oct 2004 11:44:04 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding; b=Tz3unLNfwyu1ctt3022Rlf6VgZAMYM44JA//zR9qyPa8Wy5yQKxnAllmx6/X/0P+rfFoH3Pr7ysBjuJJRuWV3UVzrmN4asD+3gPzB6xth8VU5hv/y7jKMA77OZQ4mHUnfKjFVNZUa4uA2Vhmhic5EVriRdz5Y6+zn+8G+WGr0vg= Received: by 10.11.11.30 with SMTP id 30mr668002cwk; Wed, 27 Oct 2004 11:44:04 -0700 (PDT) Received: by 10.11.122.63 with HTTP; Wed, 27 Oct 2004 11:44:04 -0700 (PDT) Message-ID: Date: Wed, 27 Oct 2004 14:44:04 -0400 From: Chris McDermott To: freebsd-amd64@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: 8111 sound support X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Chris McDermott List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2004 18:44:06 -0000 I have a Tyan Thunder K8W motherboard (with AMD 8111 chipset). dmesg shows: pci0: at device 7.2 (no driver attached) pci0: at device 7.3 (no driver attached) pci0: at device 7.5 (no driver attached) pciconf: none0@pci0:7:2: class=0x0c0500 card=0x746a1022 chip=0x746a1022 rev=0x02 hdr=0x00 none1@pci0:7:3: class=0x068000 card=0x746b1022 chip=0x746b1022 rev=0x05 hdr=0x00 none2@pci0:7:5: class=0x040100 card=0x288510f1 chip=0x746d1022 rev=0x03 hdr=0x00 I'm running 5.3beta7, in sys/dev/sound/pci/ich.c there's: case 0x746d1022: device_set_desc(dev, "AMD-8111"); return 0; The snd* modules don't show up in /boot/kernel/, but I have "device sound" in my kernel config. I've found dmesgs on google with it detected correctly, so I'm left wondering what am I doing wrong? Cheers, Chris