On Tue, Jan 19, 2016 at 02:25:13PM -0600, Bjorn Helgaas wrote: > On Mon, Jan 18, 2016 at 02:04:05PM +0000, Graeme Gregory wrote: > > After some private debugging with Mark it turned out that the difference > > between our configurations was I did not have. > > > > CONFIG_DMA_CMA=y > > > > With this enabled then the card works without coherent mask hack. > > I didn't follow the whole discussion here, but is this a case where > the driver could fail more gracefully than it did? Can we do anything > to make this easier for the next person who trips over the same problem? I've not followed the discussion at all, but reading what was in the quoted parts of the mail makes me somewhat suspicious. The way PCI drivers (or in fact any driver) are supposed to work is: - the bus code sets up a default mask (32-bit DMA in the case of PCI) - the driver calls dma_set_mask() or similar function with the mask the _driver_ wants to use. Arch DMA code decides whether the mask can be supported, and if it can, it re-sets the DMA mask. If the mask can't be supported, it returns an error. The driver is doing things correctly: if ((sizeof(dma_addr_t) > 4) && !pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) && use_dac) { tp->cp_cmd |= PCIDAC; dev->features |= NETIF_F_HIGHDMA; } else { rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); which says: if the size of a DMA address supports 64-bit, and we can set a 64-bit DMA address mask (iow, the platform allows it), and we're permitted to use DAC, use DAC, otherwise try to set a 32-bit DMA mask. It shouldn't matter one bit what the mask is before that point. However, what the driver fails to do is to deal with the coherent mask - it appears to be missing a call to pci_set_consistent_dma_mask(). That may be where the issue is. It may be worth doing what I did with the DMA API, and introducing pci_set_mask_and_coherent() which sets both masks together - which will probably allow some PCI driver code to be simplified. -- RMK's Patch system: http://www.arm.linux.org.uk/developer/patches/ FTTC broadband for 0.8mile line: currently at 9.6Mbps down 400kbps up according to speedtest.net. -- To unsubscribe from this list: send the line "unsubscribe linux-pci" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html