memalloc.h 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. /*
  2. * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
  3. * Takashi Iwai <tiwai@suse.de>
  4. *
  5. * Generic memory allocators
  6. *
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  21. *
  22. */
  23. #ifndef __SOUND_MEMALLOC_H
  24. #define __SOUND_MEMALLOC_H
  25. #include <asm/page.h>
  26. struct device;
  27. /*
  28. * buffer device info
  29. */
  30. struct snd_dma_device {
  31. int type; /* SNDRV_DMA_TYPE_XXX */
  32. struct device *dev; /* generic device */
  33. };
  34. #define snd_dma_pci_data(pci) (&(pci)->dev)
  35. #define snd_dma_isa_data() NULL
  36. #define snd_dma_continuous_data(x) ((struct device *)(__force unsigned long)(x))
  37. /*
  38. * buffer types
  39. */
  40. #define SNDRV_DMA_TYPE_UNKNOWN 0 /* not defined */
  41. #define SNDRV_DMA_TYPE_CONTINUOUS 1 /* continuous no-DMA memory */
  42. #define SNDRV_DMA_TYPE_DEV 2 /* generic device continuous */
  43. #ifdef CONFIG_SND_DMA_SGBUF
  44. #define SNDRV_DMA_TYPE_DEV_SG 3 /* generic device SG-buffer */
  45. #else
  46. #define SNDRV_DMA_TYPE_DEV_SG SNDRV_DMA_TYPE_DEV /* no SG-buf support */
  47. #endif
  48. #ifdef CONFIG_GENERIC_ALLOCATOR
  49. #define SNDRV_DMA_TYPE_DEV_IRAM 4 /* generic device iram-buffer */
  50. #else
  51. #define SNDRV_DMA_TYPE_DEV_IRAM SNDRV_DMA_TYPE_DEV
  52. #endif
  53. /*
  54. * info for buffer allocation
  55. */
  56. struct snd_dma_buffer {
  57. struct snd_dma_device dev; /* device type */
  58. unsigned char *area; /* virtual pointer */
  59. dma_addr_t addr; /* physical address */
  60. size_t bytes; /* buffer size in bytes */
  61. void *private_data; /* private for allocator; don't touch */
  62. };
  63. /*
  64. * return the pages matching with the given byte size
  65. */
  66. static inline unsigned int snd_sgbuf_aligned_pages(size_t size)
  67. {
  68. return (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
  69. }
  70. #ifdef CONFIG_SND_DMA_SGBUF
  71. /*
  72. * Scatter-Gather generic device pages
  73. */
  74. void *snd_malloc_sgbuf_pages(struct device *device,
  75. size_t size, struct snd_dma_buffer *dmab,
  76. size_t *res_size);
  77. int snd_free_sgbuf_pages(struct snd_dma_buffer *dmab);
  78. struct snd_sg_page {
  79. void *buf;
  80. dma_addr_t addr;
  81. };
  82. struct snd_sg_buf {
  83. int size; /* allocated byte size */
  84. int pages; /* allocated pages */
  85. int tblsize; /* allocated table size */
  86. struct snd_sg_page *table; /* address table */
  87. struct page **page_table; /* page table (for vmap/vunmap) */
  88. struct device *dev;
  89. };
  90. /*
  91. * return the physical address at the corresponding offset
  92. */
  93. static inline dma_addr_t snd_sgbuf_get_addr(struct snd_dma_buffer *dmab,
  94. size_t offset)
  95. {
  96. struct snd_sg_buf *sgbuf = dmab->private_data;
  97. dma_addr_t addr = sgbuf->table[offset >> PAGE_SHIFT].addr;
  98. addr &= ~((dma_addr_t)PAGE_SIZE - 1);
  99. return addr + offset % PAGE_SIZE;
  100. }
  101. /*
  102. * return the virtual address at the corresponding offset
  103. */
  104. static inline void *snd_sgbuf_get_ptr(struct snd_dma_buffer *dmab,
  105. size_t offset)
  106. {
  107. struct snd_sg_buf *sgbuf = dmab->private_data;
  108. return sgbuf->table[offset >> PAGE_SHIFT].buf + offset % PAGE_SIZE;
  109. }
  110. unsigned int snd_sgbuf_get_chunk_size(struct snd_dma_buffer *dmab,
  111. unsigned int ofs, unsigned int size);
  112. #else
  113. /* non-SG versions */
  114. static inline dma_addr_t snd_sgbuf_get_addr(struct snd_dma_buffer *dmab,
  115. size_t offset)
  116. {
  117. return dmab->addr + offset;
  118. }
  119. static inline void *snd_sgbuf_get_ptr(struct snd_dma_buffer *dmab,
  120. size_t offset)
  121. {
  122. return dmab->area + offset;
  123. }
  124. #define snd_sgbuf_get_chunk_size(dmab, ofs, size) (size)
  125. #endif /* CONFIG_SND_DMA_SGBUF */
  126. /* allocate/release a buffer */
  127. int snd_dma_alloc_pages(int type, struct device *dev, size_t size,
  128. struct snd_dma_buffer *dmab);
  129. int snd_dma_alloc_pages_fallback(int type, struct device *dev, size_t size,
  130. struct snd_dma_buffer *dmab);
  131. void snd_dma_free_pages(struct snd_dma_buffer *dmab);
  132. /* basic memory allocation functions */
  133. void *snd_malloc_pages(size_t size, gfp_t gfp_flags);
  134. void snd_free_pages(void *ptr, size_t size);
  135. #endif /* __SOUND_MEMALLOC_H */