]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/commitdiff
x86/dma: Remove the x86_dma_fallback_dev hack
authorChristoph Hellwig <hch@lst.de>
Fri, 21 Dec 2018 13:32:02 +0000 (14:32 +0100)
committerChristoph Hellwig <hch@lst.de>
Mon, 8 Apr 2019 15:52:46 +0000 (17:52 +0200)
Now that we removed support for the NULL device argument in the DMA API,
there is no need to cater for that in the x86 code.

Signed-off-by: Christoph Hellwig <hch@lst.de>
arch/x86/include/asm/dma-mapping.h
arch/x86/kernel/amd_gart_64.c
arch/x86/kernel/pci-dma.c
kernel/dma/mapping.c

index ce4d176b3d139d9636f5483103ad1ac9b20d9be9..6b15a24930e0abf92d69519b3ac39e6593ccadb6 100644 (file)
 #include <asm/swiotlb.h>
 #include <linux/dma-contiguous.h>
 
-#ifdef CONFIG_ISA
-# define ISA_DMA_BIT_MASK DMA_BIT_MASK(24)
-#else
-# define ISA_DMA_BIT_MASK DMA_BIT_MASK(32)
-#endif
-
 extern int iommu_merge;
-extern struct device x86_dma_fallback_dev;
 extern int panic_on_overflow;
 
 extern const struct dma_map_ops *dma_ops;
@@ -30,7 +23,4 @@ static inline const struct dma_map_ops *get_arch_dma_ops(struct bus_type *bus)
        return dma_ops;
 }
 
-bool arch_dma_alloc_attrs(struct device **dev);
-#define arch_dma_alloc_attrs arch_dma_alloc_attrs
-
 #endif
index 2c0aa34af69c557a56dbf41fed11b595631434bd..bf7f13ea3c64212506c6e4c215744985a6a95a62 100644 (file)
@@ -233,9 +233,6 @@ static dma_addr_t gart_map_page(struct device *dev, struct page *page,
        unsigned long bus;
        phys_addr_t paddr = page_to_phys(page) + offset;
 
-       if (!dev)
-               dev = &x86_dma_fallback_dev;
-
        if (!need_iommu(dev, paddr, size))
                return paddr;
 
@@ -392,9 +389,6 @@ static int gart_map_sg(struct device *dev, struct scatterlist *sg, int nents,
        if (nents == 0)
                return 0;
 
-       if (!dev)
-               dev = &x86_dma_fallback_dev;
-
        out             = 0;
        start           = 0;
        start_sg        = sg;
index d460998ae8285141af01b4177617f10a1c944b86..dcd272dbd0a93308892ad967c5834ec0efd68208 100644 (file)
@@ -51,14 +51,6 @@ int iommu_pass_through __read_mostly;
 
 extern struct iommu_table_entry __iommu_table[], __iommu_table_end[];
 
-/* Dummy device used for NULL arguments (normally ISA). */
-struct device x86_dma_fallback_dev = {
-       .init_name = "fallback device",
-       .coherent_dma_mask = ISA_DMA_BIT_MASK,
-       .dma_mask = &x86_dma_fallback_dev.coherent_dma_mask,
-};
-EXPORT_SYMBOL(x86_dma_fallback_dev);
-
 void __init pci_iommu_alloc(void)
 {
        struct iommu_table_entry *p;
@@ -77,18 +69,6 @@ void __init pci_iommu_alloc(void)
        }
 }
 
-bool arch_dma_alloc_attrs(struct device **dev)
-{
-       if (!*dev)
-               *dev = &x86_dma_fallback_dev;
-
-       if (!is_device_dma_capable(*dev))
-               return false;
-       return true;
-
-}
-EXPORT_SYMBOL(arch_dma_alloc_attrs);
-
 /*
  * See <Documentation/x86/x86_64/boot-options.txt> for the iommu kernel
  * parameter documentation.
index c000906348c936162e1dc4cd7faa1147a57c6d8e..685a53f2a7936986a3dfaecf9b32eb1bd3e542c8 100644 (file)
@@ -238,10 +238,6 @@ u64 dma_get_required_mask(struct device *dev)
 }
 EXPORT_SYMBOL_GPL(dma_get_required_mask);
 
-#ifndef arch_dma_alloc_attrs
-#define arch_dma_alloc_attrs(dev)      (true)
-#endif
-
 void *dma_alloc_attrs(struct device *dev, size_t size, dma_addr_t *dma_handle,
                gfp_t flag, unsigned long attrs)
 {
@@ -256,9 +252,6 @@ void *dma_alloc_attrs(struct device *dev, size_t size, dma_addr_t *dma_handle,
        /* let the implementation decide on the zone to allocate from: */
        flag &= ~(__GFP_DMA | __GFP_DMA32 | __GFP_HIGHMEM);
 
-       if (!arch_dma_alloc_attrs(&dev))
-               return NULL;
-
        if (dma_is_direct(ops))
                cpu_addr = dma_direct_alloc(dev, size, dma_handle, flag, attrs);
        else if (ops->alloc)