Prev: [PATCH net-next] drivers/net/bfin_mac.c: Use pr_fmt, netdev_<level>
Next: [PATCH 8/9] vmscan: Kick flusher threads to clean pages when reclaim is encountering dirty pages
From: Konrad Rzeszutek Wilk on 4 Aug 2010 11:00 On Wed, Aug 04, 2010 at 09:03:53PM +0900, FUJITA Tomonori wrote: > On Wed, 04 Aug 2010 12:22:32 +0100 > Evan Lavelle <sa212+lkml(a)cyconix.com> wrote: > > > FUJITA Tomonori wrote: > > >> Made some progress here. The problem is that this is 32-bit PAE kernel, > > >> so 'dma_addr_t' is 64-bit. However, I have a 32-bit PCIe card, so I need > > >> a 32-bit dma_addr_t. How do I do this? In other words, how do I handle > > >> 32-bit PCI cards on PAE or 64-bit systems? My code sets the DMA mask to > > >> 32 bits but this is *not* sufficient: > > >> > > >> pci_set_dma_mask(my_dev, DMA_32BIT_MASK) > > > > > > It doesn't work on x86_32 kernel if your driver doesn't work with the > > > block layer or the network subsystem. > > > > Sorry, not sure that I understand this. Are you saying that I can't set > > a DMA mask on x86_32 unless I have a block or network driver? > > Yeah, the mask is ignored. As I wrote in the previous mail, x86_32 > doesn't have a bounce mechanism so dma_map_{single|sg} can't do > anything for a buffer above 32bit even if the mask is 32bit. > > > > > If your driver can't handle 64bit DMA, you need bounce buffer. > > > > The problem is not that I can't handle 64-bit DMA in the driver, but > > that the PCI card can't do 64-bit DMA. I tell the kernel this by calling > > 'pci_set_dma_mask' with a 32-bit mask, but it appears to be ignoring my > > request and then giving me a 64-bit dma_addr_t for the 32-bit PCI card. > > If your card can't do 64-bit DMA, you need a bounce buffer mechanism. > > Options are: > > - your driver implements its own bounce buffer mechanism (as some > driver do). > > - add swiotlb support to x86_32 (I don't think that it's difficult but > I might miss something). I think the highmem support might be a bit tricky. The PowerPC folks did some work in there, so it _ought_ to work. Evan, you could edit arch/x86/Kconfig and change: config SWIOTLB def_bool y if X86_64 to say def_bool y if X86 and see how it works? FYI, it might wreak havoc on your machine thought, so be sure you have a fail-safe kernel and backup your root/home directory. (FYI, I made Xen-SWIOTLB be capable of running under X86_32 and so far no trouble.. but that is not baremetal obviously). -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
From: Yuhong Bao on 12 Aug 2010 21:40
> > - add swiotlb support to x86_32 (I don't think that it's difficult but > > I might miss something). > > I think the highmem support might be a bit tricky. The PowerPC folks > did some work in there, so it _ought_ to work. > > Evan, you could edit arch/x86/Kconfig and change: > config SWIOTLB > def_bool y if X86_64 > > to say > def_bool y if X86 > > and see how it works? FYI, it might wreak havoc on your machine thought, > so be sure you have a fail-safe kernel and backup your root/home > directory. > > (FYI, I made Xen-SWIOTLB be capable of running under X86_32 and so far > no trouble.. but that is not baremetal obviously). In fact, if you are going to port swiotlb, why not port the entire iommu support to x86_32 with PAE too? In fact, I am really irritated at how the x86-64 port was developed completely separate from mainline, when it is just a variant of the same x86 arch. For another example of this, look at the history of ACPI SRAT support in Linux. Yuhong Bao -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |