cregit-Linux how code gets into the kernel

Release 4.14 arch/ia64/kernel/pci-dma.c

Directory: arch/ia64/kernel
// SPDX-License-Identifier: GPL-2.0
/*
 * Dynamic DMA mapping support.
 */

#include <linux/types.h>
#include <linux/mm.h>
#include <linux/string.h>
#include <linux/pci.h>
#include <linux/module.h>
#include <linux/dmar.h>
#include <asm/iommu.h>
#include <asm/machvec.h>
#include <linux/dma-mapping.h>


#ifdef CONFIG_INTEL_IOMMU

#include <linux/kernel.h>

#include <asm/page.h>


dma_addr_t bad_dma_address __read_mostly;

EXPORT_SYMBOL(bad_dma_address);


static int iommu_sac_force __read_mostly;


int no_iommu __read_mostly;
#ifdef CONFIG_IOMMU_DEBUG

int force_iommu __read_mostly = 1;
#else

int force_iommu __read_mostly;
#endif


int iommu_pass_through;

extern struct dma_map_ops intel_dma_ops;


static int __init pci_iommu_init(void) { if (iommu_detected) intel_iommu_init(); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Fenghua Yu19100.00%1100.00%
Total19100.00%1100.00%

/* Must execute after PCI subsystem */ fs_initcall(pci_iommu_init);
void pci_iommu_shutdown(void) { return; }

Contributors

PersonTokensPropCommitsCommitProp
Fenghua Yu8100.00%1100.00%
Total8100.00%1100.00%


void __init iommu_dma_init(void) { return; }

Contributors

PersonTokensPropCommitsCommitProp
Fenghua Yu9100.00%1100.00%
Total9100.00%1100.00%


int iommu_dma_supported(struct device *dev, u64 mask) { /* Copied from i386. Doesn't make much sense, because it will only work for pci_alloc_coherent. The caller just has to use GFP_DMA in this case. */ if (mask < DMA_BIT_MASK(24)) return 0; /* Tell the device to use SAC when IOMMU force is on. This allows the driver to use cheaper accesses in some cases. Problem with this is that if we overflow the IOMMU area and return DAC as fallback address the device may not handle it correctly. As a special case some controllers have a 39bit address mode that is as efficient as 32bit (aic79xx). Don't force SAC for these. Assume all masks <= 40 bits are of this type. Normally this doesn't make any difference, but gives more gentle handling of IOMMU overflow. */ if (iommu_sac_force && (mask >= DMA_BIT_MASK(40))) { dev_info(dev, "Force SAC with mask %llx\n", mask); return 0; } return 1; }

Contributors

PersonTokensPropCommitsCommitProp
Fenghua Yu4884.21%125.00%
Yang Hongyang814.04%250.00%
Matthew Wilcox11.75%125.00%
Total57100.00%4100.00%

EXPORT_SYMBOL(iommu_dma_supported);
void __init pci_iommu_alloc(void) { dma_ops = &intel_dma_ops; intel_dma_ops.sync_single_for_cpu = machvec_dma_sync_single; intel_dma_ops.sync_sg_for_cpu = machvec_dma_sync_sg; intel_dma_ops.sync_single_for_device = machvec_dma_sync_single; intel_dma_ops.sync_sg_for_device = machvec_dma_sync_sg; intel_dma_ops.dma_supported = iommu_dma_supported; /* * The order of these functions is important for * fall-back/fail-over reasons */ detect_intel_iommu(); #ifdef CONFIG_SWIOTLB pci_swiotlb_init(); #endif }

Contributors

PersonTokensPropCommitsCommitProp
FUJITA Tomonori4581.82%150.00%
Bart Van Assche1018.18%150.00%
Total55100.00%2100.00%

#endif

Overall Contributors

PersonTokensPropCommitsCommitProp
Fenghua Yu17170.66%220.00%
FUJITA Tomonori5020.66%220.00%
Bart Van Assche104.13%110.00%
Yang Hongyang83.31%220.00%
Greg Kroah-Hartman10.41%110.00%
Suresh B. Siddha10.41%110.00%
Matthew Wilcox10.41%110.00%
Total242100.00%10100.00%
Directory: arch/ia64/kernel
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.