diff options
author | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2010-03-10 18:23:43 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-03-12 18:52:43 -0500 |
commit | f5a69f4c1319c03b946e1e99a590b6002aa3e5ef (patch) | |
tree | 47b6c3ec15111570f531e060567d290830a3d06c /Documentation | |
parent | 216bf58f4092df33262bea498f0460657f4842a4 (diff) |
Documentation: remove the PCI DMA API description in DMA-API.txt
- remove the PCI DMA API description in DMA-API.txt
- remove the descriptions of dma_unmap macros since
PCI-DMA-mapping.txt has the same description.
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Cc: James Bottomley <James.Bottomley@HansenPartnership.com>
Cc: "David S. Miller" <davem@davemloft.net>
Reviewed-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/DMA-API.txt | 152 |
1 files changed, 15 insertions, 137 deletions
diff --git a/Documentation/DMA-API.txt b/Documentation/DMA-API.txt index 0fc5728ed487..5e018f67b409 100644 --- a/Documentation/DMA-API.txt +++ b/Documentation/DMA-API.txt | |||
@@ -4,20 +4,18 @@ | |||
4 | James E.J. Bottomley <James.Bottomley@HansenPartnership.com> | 4 | James E.J. Bottomley <James.Bottomley@HansenPartnership.com> |
5 | 5 | ||
6 | This document describes the DMA API. For a more gentle introduction | 6 | This document describes the DMA API. For a more gentle introduction |
7 | phrased in terms of the pci_ equivalents (and actual examples) see | 7 | of the API (and actual examples) see |
8 | Documentation/PCI/PCI-DMA-mapping.txt. | 8 | Documentation/PCI/PCI-DMA-mapping.txt. |
9 | 9 | ||
10 | This API is split into two pieces. Part I describes the API and the | 10 | This API is split into two pieces. Part I describes the API. Part II |
11 | corresponding pci_ API. Part II describes the extensions to the API | 11 | describes the extensions to the API for supporting non-consistent |
12 | for supporting non-consistent memory machines. Unless you know that | 12 | memory machines. Unless you know that your driver absolutely has to |
13 | your driver absolutely has to support non-consistent platforms (this | 13 | support non-consistent platforms (this is usually only legacy |
14 | is usually only legacy platforms) you should only use the API | 14 | platforms) you should only use the API described in part I. |
15 | described in part I. | ||
16 | 15 | ||
17 | Part I - pci_ and dma_ Equivalent API | 16 | Part I - dma_ API |
18 | ------------------------------------- | 17 | ------------------------------------- |
19 | 18 | ||
20 | To get the pci_ API, you must #include <linux/pci.h> | ||
21 | To get the dma_ API, you must #include <linux/dma-mapping.h> | 19 | To get the dma_ API, you must #include <linux/dma-mapping.h> |
22 | 20 | ||
23 | 21 | ||
@@ -27,9 +25,6 @@ Part Ia - Using large dma-coherent buffers | |||
27 | void * | 25 | void * |
28 | dma_alloc_coherent(struct device *dev, size_t size, | 26 | dma_alloc_coherent(struct device *dev, size_t size, |
29 | dma_addr_t *dma_handle, gfp_t flag) | 27 | dma_addr_t *dma_handle, gfp_t flag) |
30 | void * | ||
31 | pci_alloc_consistent(struct pci_dev *dev, size_t size, | ||
32 | dma_addr_t *dma_handle) | ||
33 | 28 | ||
34 | Consistent memory is memory for which a write by either the device or | 29 | Consistent memory is memory for which a write by either the device or |
35 | the processor can immediately be read by the processor or device | 30 | the processor can immediately be read by the processor or device |
@@ -53,15 +48,11 @@ The simplest way to do that is to use the dma_pool calls (see below). | |||
53 | The flag parameter (dma_alloc_coherent only) allows the caller to | 48 | The flag parameter (dma_alloc_coherent only) allows the caller to |
54 | specify the GFP_ flags (see kmalloc) for the allocation (the | 49 | specify the GFP_ flags (see kmalloc) for the allocation (the |
55 | implementation may choose to ignore flags that affect the location of | 50 | implementation may choose to ignore flags that affect the location of |
56 | the returned memory, like GFP_DMA). For pci_alloc_consistent, you | 51 | the returned memory, like GFP_DMA). |
57 | must assume GFP_ATOMIC behaviour. | ||
58 | 52 | ||
59 | void | 53 | void |
60 | dma_free_coherent(struct device *dev, size_t size, void *cpu_addr, | 54 | dma_free_coherent(struct device *dev, size_t size, void *cpu_addr, |
61 | dma_addr_t dma_handle) | 55 | dma_addr_t dma_handle) |
62 | void | ||
63 | pci_free_consistent(struct pci_dev *dev, size_t size, void *cpu_addr, | ||
64 | dma_addr_t dma_handle) | ||
65 | 56 | ||
66 | Free the region of consistent memory you previously allocated. dev, | 57 | Free the region of consistent memory you previously allocated. dev, |
67 | size and dma_handle must all be the same as those passed into the | 58 | size and dma_handle must all be the same as those passed into the |
@@ -89,10 +80,6 @@ for alignment, like queue heads needing to be aligned on N-byte boundaries. | |||
89 | dma_pool_create(const char *name, struct device *dev, | 80 | dma_pool_create(const char *name, struct device *dev, |
90 | size_t size, size_t align, size_t alloc); | 81 | size_t size, size_t align, size_t alloc); |
91 | 82 | ||
92 | struct pci_pool * | ||
93 | pci_pool_create(const char *name, struct pci_device *dev, | ||
94 | size_t size, size_t align, size_t alloc); | ||
95 | |||
96 | The pool create() routines initialize a pool of dma-coherent buffers | 83 | The pool create() routines initialize a pool of dma-coherent buffers |
97 | for use with a given device. It must be called in a context which | 84 | for use with a given device. It must be called in a context which |
98 | can sleep. | 85 | can sleep. |
@@ -108,9 +95,6 @@ from this pool must not cross 4KByte boundaries. | |||
108 | void *dma_pool_alloc(struct dma_pool *pool, gfp_t gfp_flags, | 95 | void *dma_pool_alloc(struct dma_pool *pool, gfp_t gfp_flags, |
109 | dma_addr_t *dma_handle); | 96 | dma_addr_t *dma_handle); |
110 | 97 | ||
111 | void *pci_pool_alloc(struct pci_pool *pool, gfp_t gfp_flags, | ||
112 | dma_addr_t *dma_handle); | ||
113 | |||
114 | This allocates memory from the pool; the returned memory will meet the size | 98 | This allocates memory from the pool; the returned memory will meet the size |
115 | and alignment requirements specified at creation time. Pass GFP_ATOMIC to | 99 | and alignment requirements specified at creation time. Pass GFP_ATOMIC to |
116 | prevent blocking, or if it's permitted (not in_interrupt, not holding SMP locks), | 100 | prevent blocking, or if it's permitted (not in_interrupt, not holding SMP locks), |
@@ -122,9 +106,6 @@ pool's device. | |||
122 | void dma_pool_free(struct dma_pool *pool, void *vaddr, | 106 | void dma_pool_free(struct dma_pool *pool, void *vaddr, |
123 | dma_addr_t addr); | 107 | dma_addr_t addr); |
124 | 108 | ||
125 | void pci_pool_free(struct pci_pool *pool, void *vaddr, | ||
126 | dma_addr_t addr); | ||
127 | |||
128 | This puts memory back into the pool. The pool is what was passed to | 109 | This puts memory back into the pool. The pool is what was passed to |
129 | the pool allocation routine; the cpu (vaddr) and dma addresses are what | 110 | the pool allocation routine; the cpu (vaddr) and dma addresses are what |
130 | were returned when that routine allocated the memory being freed. | 111 | were returned when that routine allocated the memory being freed. |
@@ -132,8 +113,6 @@ were returned when that routine allocated the memory being freed. | |||
132 | 113 | ||
133 | void dma_pool_destroy(struct dma_pool *pool); | 114 | void dma_pool_destroy(struct dma_pool *pool); |
134 | 115 | ||
135 | void pci_pool_destroy(struct pci_pool *pool); | ||
136 | |||
137 | The pool destroy() routines free the resources of the pool. They must be | 116 | The pool destroy() routines free the resources of the pool. They must be |
138 | called in a context which can sleep. Make sure you've freed all allocated | 117 | called in a context which can sleep. Make sure you've freed all allocated |
139 | memory back to the pool before you destroy it. | 118 | memory back to the pool before you destroy it. |
@@ -144,8 +123,6 @@ Part Ic - DMA addressing limitations | |||
144 | 123 | ||
145 | int | 124 | int |
146 | dma_supported(struct device *dev, u64 mask) | 125 | dma_supported(struct device *dev, u64 mask) |
147 | int | ||
148 | pci_dma_supported(struct pci_dev *hwdev, u64 mask) | ||
149 | 126 | ||
150 | Checks to see if the device can support DMA to the memory described by | 127 | Checks to see if the device can support DMA to the memory described by |
151 | mask. | 128 | mask. |
@@ -159,8 +136,6 @@ driver writers. | |||
159 | 136 | ||
160 | int | 137 | int |
161 | dma_set_mask(struct device *dev, u64 mask) | 138 | dma_set_mask(struct device *dev, u64 mask) |
162 | int | ||
163 | pci_set_dma_mask(struct pci_device *dev, u64 mask) | ||
164 | 139 | ||
165 | Checks to see if the mask is possible and updates the device | 140 | Checks to see if the mask is possible and updates the device |
166 | parameters if it is. | 141 | parameters if it is. |
@@ -169,8 +144,6 @@ Returns: 0 if successful and a negative error if not. | |||
169 | 144 | ||
170 | int | 145 | int |
171 | dma_set_coherent_mask(struct device *dev, u64 mask) | 146 | dma_set_coherent_mask(struct device *dev, u64 mask) |
172 | int | ||
173 | pci_set_consistent_dma_mask(struct pci_device *dev, u64 mask) | ||
174 | 147 | ||
175 | Checks to see if the mask is possible and updates the device | 148 | Checks to see if the mask is possible and updates the device |
176 | parameters if it is. | 149 | parameters if it is. |
@@ -197,9 +170,6 @@ Part Id - Streaming DMA mappings | |||
197 | dma_addr_t | 170 | dma_addr_t |
198 | dma_map_single(struct device *dev, void *cpu_addr, size_t size, | 171 | dma_map_single(struct device *dev, void *cpu_addr, size_t size, |
199 | enum dma_data_direction direction) | 172 | enum dma_data_direction direction) |
200 | dma_addr_t | ||
201 | pci_map_single(struct pci_dev *hwdev, void *cpu_addr, size_t size, | ||
202 | int direction) | ||
203 | 173 | ||
204 | Maps a piece of processor virtual memory so it can be accessed by the | 174 | Maps a piece of processor virtual memory so it can be accessed by the |
205 | device and returns the physical handle of the memory. | 175 | device and returns the physical handle of the memory. |
@@ -208,14 +178,10 @@ The direction for both api's may be converted freely by casting. | |||
208 | However the dma_ API uses a strongly typed enumerator for its | 178 | However the dma_ API uses a strongly typed enumerator for its |
209 | direction: | 179 | direction: |
210 | 180 | ||
211 | DMA_NONE = PCI_DMA_NONE no direction (used for | 181 | DMA_NONE no direction (used for debugging) |
212 | debugging) | 182 | DMA_TO_DEVICE data is going from the memory to the device |
213 | DMA_TO_DEVICE = PCI_DMA_TODEVICE data is going from the | 183 | DMA_FROM_DEVICE data is coming from the device to the memory |
214 | memory to the device | 184 | DMA_BIDIRECTIONAL direction isn't known |
215 | DMA_FROM_DEVICE = PCI_DMA_FROMDEVICE data is coming from | ||
216 | the device to the | ||
217 | memory | ||
218 | DMA_BIDIRECTIONAL = PCI_DMA_BIDIRECTIONAL direction isn't known | ||
219 | 185 | ||
220 | Notes: Not all memory regions in a machine can be mapped by this | 186 | Notes: Not all memory regions in a machine can be mapped by this |
221 | API. Further, regions that appear to be physically contiguous in | 187 | API. Further, regions that appear to be physically contiguous in |
@@ -278,9 +244,6 @@ cache lines are updated with data that the device may have changed). | |||
278 | void | 244 | void |
279 | dma_unmap_single(struct device *dev, dma_addr_t dma_addr, size_t size, | 245 | dma_unmap_single(struct device *dev, dma_addr_t dma_addr, size_t size, |
280 | enum dma_data_direction direction) | 246 | enum dma_data_direction direction) |
281 | void | ||
282 | pci_unmap_single(struct pci_dev *hwdev, dma_addr_t dma_addr, | ||
283 | size_t size, int direction) | ||
284 | 247 | ||
285 | Unmaps the region previously mapped. All the parameters passed in | 248 | Unmaps the region previously mapped. All the parameters passed in |
286 | must be identical to those passed in (and returned) by the mapping | 249 | must be identical to those passed in (and returned) by the mapping |
@@ -290,15 +253,9 @@ dma_addr_t | |||
290 | dma_map_page(struct device *dev, struct page *page, | 253 | dma_map_page(struct device *dev, struct page *page, |
291 | unsigned long offset, size_t size, | 254 | unsigned long offset, size_t size, |
292 | enum dma_data_direction direction) | 255 | enum dma_data_direction direction) |
293 | dma_addr_t | ||
294 | pci_map_page(struct pci_dev *hwdev, struct page *page, | ||
295 | unsigned long offset, size_t size, int direction) | ||
296 | void | 256 | void |
297 | dma_unmap_page(struct device *dev, dma_addr_t dma_address, size_t size, | 257 | dma_unmap_page(struct device *dev, dma_addr_t dma_address, size_t size, |
298 | enum dma_data_direction direction) | 258 | enum dma_data_direction direction) |
299 | void | ||
300 | pci_unmap_page(struct pci_dev *hwdev, dma_addr_t dma_address, | ||
301 | size_t size, int direction) | ||
302 | 259 | ||
303 | API for mapping and unmapping for pages. All the notes and warnings | 260 | API for mapping and unmapping for pages. All the notes and warnings |
304 | for the other mapping APIs apply here. Also, although the <offset> | 261 | for the other mapping APIs apply here. Also, although the <offset> |
@@ -309,9 +266,6 @@ cache width is. | |||
309 | int | 266 | int |
310 | dma_mapping_error(struct device *dev, dma_addr_t dma_addr) | 267 | dma_mapping_error(struct device *dev, dma_addr_t dma_addr) |
311 | 268 | ||
312 | int | ||
313 | pci_dma_mapping_error(struct pci_dev *hwdev, dma_addr_t dma_addr) | ||
314 | |||
315 | In some circumstances dma_map_single and dma_map_page will fail to create | 269 | In some circumstances dma_map_single and dma_map_page will fail to create |
316 | a mapping. A driver can check for these errors by testing the returned | 270 | a mapping. A driver can check for these errors by testing the returned |
317 | dma address with dma_mapping_error(). A non-zero return value means the mapping | 271 | dma address with dma_mapping_error(). A non-zero return value means the mapping |
@@ -321,9 +275,6 @@ reduce current DMA mapping usage or delay and try again later). | |||
321 | int | 275 | int |
322 | dma_map_sg(struct device *dev, struct scatterlist *sg, | 276 | dma_map_sg(struct device *dev, struct scatterlist *sg, |
323 | int nents, enum dma_data_direction direction) | 277 | int nents, enum dma_data_direction direction) |
324 | int | ||
325 | pci_map_sg(struct pci_dev *hwdev, struct scatterlist *sg, | ||
326 | int nents, int direction) | ||
327 | 278 | ||
328 | Returns: the number of physical segments mapped (this may be shorter | 279 | Returns: the number of physical segments mapped (this may be shorter |
329 | than <nents> passed in if some elements of the scatter/gather list are | 280 | than <nents> passed in if some elements of the scatter/gather list are |
@@ -363,9 +314,6 @@ accessed sg->address and sg->length as shown above. | |||
363 | void | 314 | void |
364 | dma_unmap_sg(struct device *dev, struct scatterlist *sg, | 315 | dma_unmap_sg(struct device *dev, struct scatterlist *sg, |
365 | int nhwentries, enum dma_data_direction direction) | 316 | int nhwentries, enum dma_data_direction direction) |
366 | void | ||
367 | pci_unmap_sg(struct pci_dev *hwdev, struct scatterlist *sg, | ||
368 | int nents, int direction) | ||
369 | 317 | ||
370 | Unmap the previously mapped scatter/gather list. All the parameters | 318 | Unmap the previously mapped scatter/gather list. All the parameters |
371 | must be the same as those and passed in to the scatter/gather mapping | 319 | must be the same as those and passed in to the scatter/gather mapping |
@@ -378,26 +326,14 @@ void | |||
378 | dma_sync_single_for_cpu(struct device *dev, dma_addr_t dma_handle, size_t size, | 326 | dma_sync_single_for_cpu(struct device *dev, dma_addr_t dma_handle, size_t size, |
379 | enum dma_data_direction direction) | 327 | enum dma_data_direction direction) |
380 | void | 328 | void |
381 | pci_dma_sync_single_for_cpu(struct pci_dev *hwdev, dma_addr_t dma_handle, | ||
382 | size_t size, int direction) | ||
383 | void | ||
384 | dma_sync_single_for_device(struct device *dev, dma_addr_t dma_handle, size_t size, | 329 | dma_sync_single_for_device(struct device *dev, dma_addr_t dma_handle, size_t size, |
385 | enum dma_data_direction direction) | 330 | enum dma_data_direction direction) |
386 | void | 331 | void |
387 | pci_dma_sync_single_for_device(struct pci_dev *hwdev, dma_addr_t dma_handle, | ||
388 | size_t size, int direction) | ||
389 | void | ||
390 | dma_sync_sg_for_cpu(struct device *dev, struct scatterlist *sg, int nelems, | 332 | dma_sync_sg_for_cpu(struct device *dev, struct scatterlist *sg, int nelems, |
391 | enum dma_data_direction direction) | 333 | enum dma_data_direction direction) |
392 | void | 334 | void |
393 | pci_dma_sync_sg_for_cpu(struct pci_dev *hwdev, struct scatterlist *sg, | ||
394 | int nelems, int direction) | ||
395 | void | ||
396 | dma_sync_sg_for_device(struct device *dev, struct scatterlist *sg, int nelems, | 335 | dma_sync_sg_for_device(struct device *dev, struct scatterlist *sg, int nelems, |
397 | enum dma_data_direction direction) | 336 | enum dma_data_direction direction) |
398 | void | ||
399 | pci_dma_sync_sg_for_device(struct pci_dev *hwdev, struct scatterlist *sg, | ||
400 | int nelems, int direction) | ||
401 | 337 | ||
402 | Synchronise a single contiguous or scatter/gather mapping for the cpu | 338 | Synchronise a single contiguous or scatter/gather mapping for the cpu |
403 | and device. With the sync_sg API, all the parameters must be the same | 339 | and device. With the sync_sg API, all the parameters must be the same |
@@ -482,70 +418,12 @@ void whizco_dma_map_sg_attrs(struct device *dev, dma_addr_t dma_addr, | |||
482 | .... | 418 | .... |
483 | 419 | ||
484 | 420 | ||
485 | Part Ie - Optimizing Unmap State Space Consumption | ||
486 | -------------------------------- | ||
487 | |||
488 | On some platforms, dma_unmap_{single,page}() is simply a nop. | ||
489 | Therefore, keeping track of the mapping address and length is a waste | ||
490 | of space. Instead of filling your drivers up with ifdefs and the like | ||
491 | to "work around" this (which would defeat the whole purpose of a | ||
492 | portable API) the following facilities are provided. | ||
493 | |||
494 | Actually, instead of describing the macros one by one, we'll | ||
495 | transform some example code. | ||
496 | |||
497 | 1) Use DEFINE_DMA_UNMAP_{ADDR,LEN} in state saving structures. | ||
498 | Example, before: | ||
499 | |||
500 | struct ring_state { | ||
501 | struct sk_buff *skb; | ||
502 | dma_addr_t mapping; | ||
503 | __u32 len; | ||
504 | }; | ||
505 | |||
506 | after: | ||
507 | |||
508 | struct ring_state { | ||
509 | struct sk_buff *skb; | ||
510 | DEFINE_DMA_UNMAP_ADDR(mapping); | ||
511 | DEFINE_DMA_UNMAP_LEN(len); | ||
512 | }; | ||
513 | |||
514 | 2) Use dma_unmap_{addr,len}_set to set these values. | ||
515 | Example, before: | ||
516 | |||
517 | ringp->mapping = FOO; | ||
518 | ringp->len = BAR; | ||
519 | |||
520 | after: | ||
521 | |||
522 | dma_unmap_addr_set(ringp, mapping, FOO); | ||
523 | dma_unmap_len_set(ringp, len, BAR); | ||
524 | |||
525 | 3) Use dma_unmap_{addr,len} to access these values. | ||
526 | Example, before: | ||
527 | |||
528 | dma_unmap_single(dev, ringp->mapping, ringp->len, | ||
529 | DMA_FROM_DEVICE); | ||
530 | |||
531 | after: | ||
532 | |||
533 | dma_unmap_single(dev, | ||
534 | dma_unmap_addr(ringp, mapping), | ||
535 | dma_unmap_len(ringp, len), | ||
536 | DMA_FROM_DEVICE); | ||
537 | |||
538 | It really should be self-explanatory. We treat the ADDR and LEN | ||
539 | separately, because it is possible for an implementation to only | ||
540 | need the address in order to perform the unmap operation. | ||
541 | |||
542 | |||
543 | Part II - Advanced dma_ usage | 421 | Part II - Advanced dma_ usage |
544 | ----------------------------- | 422 | ----------------------------- |
545 | 423 | ||
546 | Warning: These pieces of the DMA API have no PCI equivalent. They | 424 | Warning: These pieces of the DMA API should not be used in the |
547 | should also not be used in the majority of cases, since they cater for | 425 | majority of cases, since they cater for unlikely corner cases that |
548 | unlikely corner cases that don't belong in usual drivers. | 426 | don't belong in usual drivers. |
549 | 427 | ||
550 | If you don't understand how cache line coherency works between a | 428 | If you don't understand how cache line coherency works between a |
551 | processor and an I/O device, you should not be using this part of the | 429 | processor and an I/O device, you should not be using this part of the |