Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S264535AbUFTCB4 (ORCPT ); Sat, 19 Jun 2004 22:01:56 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S264538AbUFTCBu (ORCPT ); Sat, 19 Jun 2004 22:01:50 -0400 Received: from hq.pm.waw.pl ([195.116.170.10]:19437 "EHLO hq.pm.waw.pl") by vger.kernel.org with ESMTP id S264535AbUFTCBn (ORCPT ); Sat, 19 Jun 2004 22:01:43 -0400 To: James Bottomley Cc: Linux Kernel , SCSI Mailing List Subject: Re: Proposal for new generic device API: dma_get_required_mask() References: <1087481331.2210.27.camel@mulgrave> <1087523134.2210.97.camel@mulgrave> <1087657251.2162.49.camel@mulgrave> From: Krzysztof Halasa Date: Sun, 20 Jun 2004 01:39:18 +0200 In-Reply-To: <1087657251.2162.49.camel@mulgrave> (James Bottomley's message of "19 Jun 2004 10:00:50 -0500") Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1142 Lines: 25 James Bottomley writes: > Could you elaborate on this? In the current scheme the coherent mask is > for descriptor allocation (i.e. dma_alloc_coherent()) and the dma_mask > represents the bus physical addresses to which the device can DMA > directly; there's not much more the DMA API really does, what do you > think is missing? The problem is that (depending on platform) the pci_map_* and dma_map_* functions ignore both masks. An example of such platform is i386 :-) It seems the masks are used on i386 for only one thing - consistent dma mask is used for consistent allocations only, and normal dma mask is not used at all. The normal mask is used mainly on 64-bit platforms and the meaningful values are 2^32-1 and 2^64-1. It's used by PCI-X device drivers to enable DAC transfers. This is why it isn't used on 32-bit platforms. -- Krzysztof Halasa, B*FH - 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/