mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-11 15:49:56 +00:00
drm/nouveau: stop using is_swiotlb_active
Drivers have no business looking into dma-mapping internals and check what backend is used. Unfortunstely the DRM core is still broken and tries to do plain page allocations instead of using DMA API allocators by default and uses various bandaids on when to use dma_alloc_coherent. Switch nouveau to use the same (broken) scheme as amdgpu and radeon to remove the last driver user of is_swiotlb_active. Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Lyude Paul <lyude@redhat.com>
This commit is contained in:
parent
693405cf11
commit
0a2f6372a4
@ -24,9 +24,9 @@
|
||||
*/
|
||||
|
||||
#include <linux/limits.h>
|
||||
#include <linux/swiotlb.h>
|
||||
|
||||
#include <drm/ttm/ttm_range_manager.h>
|
||||
#include <drm/drm_cache.h>
|
||||
|
||||
#include "nouveau_drv.h"
|
||||
#include "nouveau_gem.h"
|
||||
@ -265,7 +265,6 @@ nouveau_ttm_init(struct nouveau_drm *drm)
|
||||
struct nvkm_pci *pci = device->pci;
|
||||
struct nvif_mmu *mmu = &drm->client.mmu;
|
||||
struct drm_device *dev = drm->dev;
|
||||
bool need_swiotlb = false;
|
||||
int typei, ret;
|
||||
|
||||
ret = nouveau_ttm_init_host(drm, 0);
|
||||
@ -300,13 +299,10 @@ nouveau_ttm_init(struct nouveau_drm *drm)
|
||||
drm->agp.cma = pci->agp.cma;
|
||||
}
|
||||
|
||||
#if IS_ENABLED(CONFIG_SWIOTLB) && IS_ENABLED(CONFIG_X86)
|
||||
need_swiotlb = is_swiotlb_active(dev->dev);
|
||||
#endif
|
||||
|
||||
ret = ttm_device_init(&drm->ttm.bdev, &nouveau_bo_driver, drm->dev->dev,
|
||||
dev->anon_inode->i_mapping,
|
||||
dev->vma_offset_manager, need_swiotlb,
|
||||
dev->vma_offset_manager,
|
||||
drm_need_swiotlb(drm->client.mmu.dmabits),
|
||||
drm->client.mmu.dmabits <= 32);
|
||||
if (ret) {
|
||||
NV_ERROR(drm, "error initialising bo driver, %d\n", ret);
|
||||
|
Loading…
x
Reference in New Issue
Block a user