Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751312Ab0BRFNK (ORCPT ); Thu, 18 Feb 2010 00:13:10 -0500 Received: from mail-vw0-f46.google.com ([209.85.212.46]:51656 "EHLO mail-vw0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751115Ab0BRFNI convert rfc822-to-8bit (ORCPT ); Thu, 18 Feb 2010 00:13:08 -0500 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=K9j5rFn9kawyIcrfChPE7+9mqwPKhNUKloPkZEuDHwEMWJsMHbYU5kXc7Xv26iF7T6 a4X+sCVye/KoeQPLCXJDDl+tBtCe/gZfe2jlTwpEtenW4URD+mnGZzmhm59d+WfboBa+ Fm3/W8/jO40Z9I13utw8mCSngNE0VVRY+Hmms= MIME-Version: 1.0 In-Reply-To: <20100218042626.GB11649@kroah.com> References: <4B7CAF95.6020306@gmail.com> <20100218042626.GB11649@kroah.com> Date: Wed, 17 Feb 2010 23:13:05 -0600 Message-ID: <51f3faa71002172113o65a85ed6y5fa39d0b3a96f7ce@mail.gmail.com> Subject: Re: [PATCH 2.6.34] ehci-hcd: add option to enable 64-bit DMA support From: Robert Hancock To: Greg KH Cc: linux-kernel , Linux-usb , Linux USB Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8BIT Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3748 Lines: 72 On Wed, Feb 17, 2010 at 10:26 PM, Greg KH wrote: > On Wed, Feb 17, 2010 at 09:10:13PM -0600, Robert Hancock wrote: >> Add a module parameter to allow the user to enable 64-bit DMA support in EHCI, >> which has been forcibly disabled since 2003 - see: >> >> http://www.mail-archive.com/linux-usb-devel@lists.sourceforge.net/msg17230.html >> >> At that time the comment was "it'd only matter on a few big Intel boxes anyway", >> however the situation is much different today when many new machines have 4GB >> or more of RAM and IOMMU/SWIOTLB are thus needlessly required for USB transfers. >> For now, the support remains disabled by default and is controlled by an >> allow_64bit module parameter. >> >> Note that some USB device drivers may require updates to pass the DMA >> capabilities up to their higher layers to avoid unnecessary IOMMU or bounce- >> buffer use (i.e. networking layer NETIF_F_HIGHDMA). Some of these checks were >> disabled by the patch listed above, and more may be required again today. >> However, those previous checks were done incorrectly using dma_supported, >> which checks to see whether a device's DMA mask can be validly set to a given >> mask, not whether its previously set mask will accomodate the mask passed in. >> >> Signed-off-by: Robert Hancock > > What is the "advantage" that setting this option would allow people to > do that the code currently does not? ?Is such an advantage measurable at > the slow rates that the EHCI driver controls? I expect it would likely be quite system-dependent. However, particularly with devices like high-speed USB storage on systems with lots of RAM, especially 8GB or more (where more of the memory can't be addressed with 32-bit than can), I suspect it would likely be measurable in terms of CPU usage, throughput or both, especially if there's no hardware IOMMU and software bounce-buffering is required. > > Is there any way to dynamically figure out if we can enable this or not? > Adding module paramaters sucks, as they are hard to configure for most > users, and they tend to be ignored. Well, the option only has an effect if the controller indicates the 64-bit addressing feature flag in the first place. The only issue would be with potential controllers that report the feature flag but it doesn't work. Based on the libata experience with AHCI which has a similar 64-bit feature flag, there are some controllers that didn't do it properly, but not many (only ATI SB600 it appears, and only on certain boards, as it seems it was a BIOS configuration issue). Having the ability to turn it on manually for testing would likely be the first step towards turning it on for all controllers that indicate support, not the end goal in itself. > > And are you really ok with enabling this on a system-wide level, and not > on a per-controller level? ?Does that work properly on all systems? As above, the only issue is if the controller reports the capability but it doesn't function properly. If a user runs into the case where one of their controllers doesn't work with it enabled, that likely means that we need to add blacklisting for that device ID, etc. (or blacklist 64-bit DMA for their platform in general). > > And if the system does not support it, and a user enables it, who is > going to support their broken system? ?:) That would be me/us :-) We need those reports though, to know how to proceed, and better to be from those who opted into testing for now.. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/