From owner-freebsd-current@FreeBSD.ORG Mon May 9 23:37:54 2011 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4F001106566C; Mon, 9 May 2011 23:37:54 +0000 (UTC) (envelope-from grehan@freebsd.org) Received: from alto.onthenet.com.au (alto.OntheNet.com.au [203.13.68.12]) by mx1.freebsd.org (Postfix) with ESMTP id 130D38FC14; Mon, 9 May 2011 23:37:53 +0000 (UTC) Received: from dommail.onthenet.com.au (dommail.OntheNet.com.au [203.13.70.57]) by alto.onthenet.com.au (Postfix) with ESMTPS id 0E8D611938; Tue, 10 May 2011 09:21:43 +1000 (EST) Received: from nancyw01-lxp.hq.netapp.com (nat-198-95-226-230.netapp.com [198.95.226.230]) by dommail.onthenet.com.au (MOS 4.1.8-GA) with ESMTP id AVM14175 (AUTH peterg@ptree32.com.au); Tue, 10 May 2011 09:21:17 +1000 Message-ID: <4DC876E9.5020705@freebsd.org> Date: Mon, 09 May 2011 17:21:13 -0600 From: Peter Grehan User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-US; rv:1.9.2.17) Gecko/20110414 Thunderbird/3.1.10 MIME-Version: 1.0 To: Julian Elischer , current@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: Re: firewire debugging 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: Mon, 09 May 2011 23:37:54 -0000 Hi Julian, > does anyone know if there is a limitation on firewire debugging on a > machine with > 4GB or memory? I don't know of any Firewire cards that support physical access *above* 4GB. They may exist. For instance, the (last?) Texas Instruments PCIe 1394a/b chip, the XIO2213B, has the following text in it's data sheet - >The physical upper bound register is an optional register and is >not implemented. .. and this is the firewire OHCI register that contains the upper 16 bits of the architected 48-bit physical address. So, you can probably use it for some form of amd64 kernel debug since kernel txt/data/bss is < 4G, but accessing anything above 4G won't work. later, Peter.