1 /* SPDX-License-Identifier: GPL-2.0 */
2 /* include this file if the platform implements the dma_ DMA Mapping API
3 * and wants to provide the pci_ DMA Mapping API in terms of it */
5 #ifndef _ASM_GENERIC_PCI_DMA_COMPAT_H
6 #define _ASM_GENERIC_PCI_DMA_COMPAT_H
8 #include <linux/dma-mapping.h>
10 /* This defines the direction arg to the DMA mapping routines. */
11 #define PCI_DMA_BIDIRECTIONAL 0
12 #define PCI_DMA_TODEVICE 1
13 #define PCI_DMA_FROMDEVICE 2
14 #define PCI_DMA_NONE 3
17 pci_alloc_consistent(struct pci_dev
*hwdev
, size_t size
,
18 dma_addr_t
*dma_handle
)
20 return dma_alloc_coherent(hwdev
== NULL
? NULL
: &hwdev
->dev
, size
, dma_handle
, GFP_ATOMIC
);
24 pci_zalloc_consistent(struct pci_dev
*hwdev
, size_t size
,
25 dma_addr_t
*dma_handle
)
27 return dma_zalloc_coherent(hwdev
== NULL
? NULL
: &hwdev
->dev
,
28 size
, dma_handle
, GFP_ATOMIC
);
32 pci_free_consistent(struct pci_dev
*hwdev
, size_t size
,
33 void *vaddr
, dma_addr_t dma_handle
)
35 dma_free_coherent(hwdev
== NULL
? NULL
: &hwdev
->dev
, size
, vaddr
, dma_handle
);
38 static inline dma_addr_t
39 pci_map_single(struct pci_dev
*hwdev
, void *ptr
, size_t size
, int direction
)
41 return dma_map_single(hwdev
== NULL
? NULL
: &hwdev
->dev
, ptr
, size
, (enum dma_data_direction
)direction
);
45 pci_unmap_single(struct pci_dev
*hwdev
, dma_addr_t dma_addr
,
46 size_t size
, int direction
)
48 dma_unmap_single(hwdev
== NULL
? NULL
: &hwdev
->dev
, dma_addr
, size
, (enum dma_data_direction
)direction
);
51 static inline dma_addr_t
52 pci_map_page(struct pci_dev
*hwdev
, struct page
*page
,
53 unsigned long offset
, size_t size
, int direction
)
55 return dma_map_page(hwdev
== NULL
? NULL
: &hwdev
->dev
, page
, offset
, size
, (enum dma_data_direction
)direction
);
59 pci_unmap_page(struct pci_dev
*hwdev
, dma_addr_t dma_address
,
60 size_t size
, int direction
)
62 dma_unmap_page(hwdev
== NULL
? NULL
: &hwdev
->dev
, dma_address
, size
, (enum dma_data_direction
)direction
);
66 pci_map_sg(struct pci_dev
*hwdev
, struct scatterlist
*sg
,
67 int nents
, int direction
)
69 return dma_map_sg(hwdev
== NULL
? NULL
: &hwdev
->dev
, sg
, nents
, (enum dma_data_direction
)direction
);
73 pci_unmap_sg(struct pci_dev
*hwdev
, struct scatterlist
*sg
,
74 int nents
, int direction
)
76 dma_unmap_sg(hwdev
== NULL
? NULL
: &hwdev
->dev
, sg
, nents
, (enum dma_data_direction
)direction
);
80 pci_dma_sync_single_for_cpu(struct pci_dev
*hwdev
, dma_addr_t dma_handle
,
81 size_t size
, int direction
)
83 dma_sync_single_for_cpu(hwdev
== NULL
? NULL
: &hwdev
->dev
, dma_handle
, size
, (enum dma_data_direction
)direction
);
87 pci_dma_sync_single_for_device(struct pci_dev
*hwdev
, dma_addr_t dma_handle
,
88 size_t size
, int direction
)
90 dma_sync_single_for_device(hwdev
== NULL
? NULL
: &hwdev
->dev
, dma_handle
, size
, (enum dma_data_direction
)direction
);
94 pci_dma_sync_sg_for_cpu(struct pci_dev
*hwdev
, struct scatterlist
*sg
,
95 int nelems
, int direction
)
97 dma_sync_sg_for_cpu(hwdev
== NULL
? NULL
: &hwdev
->dev
, sg
, nelems
, (enum dma_data_direction
)direction
);
101 pci_dma_sync_sg_for_device(struct pci_dev
*hwdev
, struct scatterlist
*sg
,
102 int nelems
, int direction
)
104 dma_sync_sg_for_device(hwdev
== NULL
? NULL
: &hwdev
->dev
, sg
, nelems
, (enum dma_data_direction
)direction
);
108 pci_dma_mapping_error(struct pci_dev
*pdev
, dma_addr_t dma_addr
)
110 return dma_mapping_error(&pdev
->dev
, dma_addr
);
114 static inline int pci_set_dma_mask(struct pci_dev
*dev
, u64 mask
)
116 return dma_set_mask(&dev
->dev
, mask
);
119 static inline int pci_set_consistent_dma_mask(struct pci_dev
*dev
, u64 mask
)
121 return dma_set_coherent_mask(&dev
->dev
, mask
);
124 static inline int pci_set_dma_max_seg_size(struct pci_dev
*dev
,
127 return dma_set_max_seg_size(&dev
->dev
, size
);
130 static inline int pci_set_dma_seg_boundary(struct pci_dev
*dev
,
133 return dma_set_seg_boundary(&dev
->dev
, mask
);
136 static inline int pci_set_dma_mask(struct pci_dev
*dev
, u64 mask
)
138 static inline int pci_set_consistent_dma_mask(struct pci_dev
*dev
, u64 mask
)
140 static inline int pci_set_dma_max_seg_size(struct pci_dev
*dev
,
143 static inline int pci_set_dma_seg_boundary(struct pci_dev
*dev
,