1 // SPDX-License-Identifier: GPL-2.0
2 /* Fallback functions when the main IOMMU code is not compiled in. This
3 code is roughly equivalent to i386. */
4 #include <linux/dma-mapping.h>
5 #include <linux/scatterlist.h>
6 #include <linux/string.h>
11 #include <asm/processor.h>
12 #include <asm/iommu.h>
15 #define NOMMU_MAPPING_ERROR 0
18 check_addr(char *name
, struct device
*hwdev
, dma_addr_t bus
, size_t size
)
20 if (hwdev
&& !dma_capable(hwdev
, bus
, size
)) {
21 if (*hwdev
->dma_mask
>= DMA_BIT_MASK(32))
23 "nommu_%s: overflow %Lx+%zu of device mask %Lx\n",
24 name
, (long long)bus
, size
,
25 (long long)*hwdev
->dma_mask
);
31 static dma_addr_t
nommu_map_page(struct device
*dev
, struct page
*page
,
32 unsigned long offset
, size_t size
,
33 enum dma_data_direction dir
,
36 dma_addr_t bus
= phys_to_dma(dev
, page_to_phys(page
)) + offset
;
38 if (!check_addr("map_single", dev
, bus
, size
))
39 return NOMMU_MAPPING_ERROR
;
40 flush_write_buffers();
44 /* Map a set of buffers described by scatterlist in streaming
45 * mode for DMA. This is the scatter-gather version of the
46 * above pci_map_single interface. Here the scatter gather list
47 * elements are each tagged with the appropriate dma address
48 * and length. They are obtained via sg_dma_{address,length}(SG).
50 * NOTE: An implementation may be able to use a smaller number of
51 * DMA address/length pairs than there are SG table elements.
52 * (for example via virtual mapping capabilities)
53 * The routine returns the number of addr/length pairs actually
54 * used, at most nents.
56 * Device ownership issues as mentioned above for pci_map_single are
59 static int nommu_map_sg(struct device
*hwdev
, struct scatterlist
*sg
,
60 int nents
, enum dma_data_direction dir
,
63 struct scatterlist
*s
;
66 WARN_ON(nents
== 0 || sg
[0].length
== 0);
68 for_each_sg(sg
, s
, nents
, i
) {
70 s
->dma_address
= sg_phys(s
);
71 if (!check_addr("map_sg", hwdev
, s
->dma_address
, s
->length
))
73 s
->dma_length
= s
->length
;
75 flush_write_buffers();
79 static void nommu_sync_single_for_device(struct device
*dev
,
80 dma_addr_t addr
, size_t size
,
81 enum dma_data_direction dir
)
83 flush_write_buffers();
87 static void nommu_sync_sg_for_device(struct device
*dev
,
88 struct scatterlist
*sg
, int nelems
,
89 enum dma_data_direction dir
)
91 flush_write_buffers();
94 static int nommu_mapping_error(struct device
*dev
, dma_addr_t dma_addr
)
96 return dma_addr
== NOMMU_MAPPING_ERROR
;
99 const struct dma_map_ops nommu_dma_ops
= {
100 .alloc
= dma_generic_alloc_coherent
,
101 .free
= dma_generic_free_coherent
,
102 .map_sg
= nommu_map_sg
,
103 .map_page
= nommu_map_page
,
104 .sync_single_for_device
= nommu_sync_single_for_device
,
105 .sync_sg_for_device
= nommu_sync_sg_for_device
,
107 .mapping_error
= nommu_mapping_error
,
108 .dma_supported
= x86_dma_supported
,