From owner-svn-src-all@FreeBSD.ORG Mon Aug 23 23:42:19 2010 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 34CBD1065695; Mon, 23 Aug 2010 23:42:19 +0000 (UTC) (envelope-from pyunyh@gmail.com) Received: from mail-pw0-f54.google.com (mail-pw0-f54.google.com [209.85.160.54]) by mx1.freebsd.org (Postfix) with ESMTP id E0E588FC16; Mon, 23 Aug 2010 23:42:18 +0000 (UTC) Received: by pwi8 with SMTP id 8so991064pwi.13 for ; Mon, 23 Aug 2010 16:42:18 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:received:from:date:to:cc :subject:message-id:reply-to:references:mime-version:content-type :content-disposition:in-reply-to:user-agent; bh=BzMii8bKkNHZBAJZspJzCmOkF/vUo7NHmQo0NBsLpVA=; b=ESCa01/rQSrACnnqH+DpNmpBJUft5eUrEjU3nEmwl8RP32lF7Tf/whzYTJi0nQe7Xw RlrgiiVKnk2fiV7pPAsHNYFbv+geiHc2eMQvE73HNoCB7aUlsBTm0A59yLv8GXYBYQBx O65k03adOQvExrTj+NSuBE0hGR8Oi+A6jC0i0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:date:to:cc:subject:message-id:reply-to:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; b=INTGIcFRqaRyvm8zpuDEFc0HrVlH17n6KOvZRIQ1nu7AYGGhNcQM7AZ+ljkkAfaVIZ 2vBX9IOKq1N4cEhL7+0sBc6wSgmo6FWuJC19joJdpIoVgw1UcoBLWDzO2HehGlMo/jIm pxT1b7lPCYgTnYWY6XCFEXsD4P+cohOgAIChA= Received: by 10.142.200.5 with SMTP id x5mr4975351wff.227.1282606938338; Mon, 23 Aug 2010 16:42:18 -0700 (PDT) Received: from pyunyh@gmail.com ([174.35.1.224]) by mx.google.com with ESMTPS id c10sm13448960wam.1.2010.08.23.16.42.14 (version=TLSv1/SSLv3 cipher=RC4-MD5); Mon, 23 Aug 2010 16:42:16 -0700 (PDT) Received: by pyunyh@gmail.com (sSMTP sendmail emulation); Mon, 23 Aug 2010 16:42:13 -0700 From: Pyun YongHyeon Date: Mon, 23 Aug 2010 16:42:13 -0700 To: Scott Long Message-ID: <20100823234213.GL1116@michelle.cdnetworks.com> References: <201008222126.o7MLQavY016669@svn.freebsd.org> <7C069EE9-33B9-4D57-A6E6-C133F6C47D53@samsco.org> <20100823182516.GC1116@michelle.cdnetworks.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20100823182516.GC1116@michelle.cdnetworks.com> User-Agent: Mutt/1.4.2.3i Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org, Pyun YongHyeon Subject: Re: svn commit: r211648 - head/sys/pci X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: pyunyh@gmail.com List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2010 23:42:19 -0000 On Mon, Aug 23, 2010 at 11:25:16AM -0700, Pyun YongHyeon wrote: > On Mon, Aug 23, 2010 at 12:27:33AM -0600, Scott Long wrote: > > On Aug 22, 2010, at 3:26 PM, Pyun YongHyeon wrote: > > > Author: yongari > > > Date: Sun Aug 22 21:26:35 2010 > > > New Revision: 211648 > > > URL: http://svn.freebsd.org/changeset/base/211648 > > > > > > Log: > > > It seems some newer RTL8139 controllers provides only memory space > > > register mapping. > > > > Something that I'm seeing more of in recent years is vendors putting descriptive information into PCI VPD attributes, and having their Windows and Linux drivers read these attributes and select behavior off of them instead of selecting based on PCI ID. I don't have any RLT8139 specs to confirm that this would be the case here, but it might be something to consider looking into. > > > > I also don't have data sheet for RTL8139 and I never saw rl(4) > controllers which have VPD capability. But I think that's good idea > to check. I've sent request mail to the user. > Thanks for hints. :-) > It seems the controller has no PCI VPD capability so I guess the idea is not applicable to RTL8139 controllers. Anyway, thanks a lot!