Blame view

include/sound/util_mem.h 1.58 KB
1a59d1b8e   Thomas Gleixner   treewide: Replace...
1
  /* SPDX-License-Identifier: GPL-2.0-or-later */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2
3
  #ifndef __SOUND_UTIL_MEM_H
  #define __SOUND_UTIL_MEM_H
ef9f0a42d   Ingo Molnar   [ALSA] semaphore ...
4
5
  
  #include <linux/mutex.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
6
7
8
9
  /*
   *  Copyright (C) 2000 Takashi Iwai <tiwai@suse.de>
   *
   *  Generic memory management routines for soundcard memory allocation
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
10
   */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
11
12
13
14
  /*
   * memory block
   */
  struct snd_util_memblk {
03da312ac   Takashi Iwai   [ALSA] Remove xxx...
15
16
  	unsigned int size;		/* size of this block */
  	unsigned int offset;		/* zero-offset of this block */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
17
18
  	struct list_head list;		/* link */
  };
03da312ac   Takashi Iwai   [ALSA] Remove xxx...
19
  #define snd_util_memblk_argptr(blk)	(void*)((char*)(blk) + sizeof(struct snd_util_memblk))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
20
21
22
23
24
  
  /*
   * memory management information
   */
  struct snd_util_memhdr {
03da312ac   Takashi Iwai   [ALSA] Remove xxx...
25
  	unsigned int size;		/* size of whole data */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
26
27
  	struct list_head block;		/* block linked-list header */
  	int nblocks;			/* # of allocated blocks */
03da312ac   Takashi Iwai   [ALSA] Remove xxx...
28
  	unsigned int used;		/* used memory size */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
29
  	int block_extra_size;		/* extra data size of chunk */
ef9f0a42d   Ingo Molnar   [ALSA] semaphore ...
30
  	struct mutex block_mutex;	/* lock */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
31
32
33
34
35
  };
  
  /*
   * prototypes
   */
03da312ac   Takashi Iwai   [ALSA] Remove xxx...
36
37
38
39
40
  struct snd_util_memhdr *snd_util_memhdr_new(int memsize);
  void snd_util_memhdr_free(struct snd_util_memhdr *hdr);
  struct snd_util_memblk *snd_util_mem_alloc(struct snd_util_memhdr *hdr, int size);
  int snd_util_mem_free(struct snd_util_memhdr *hdr, struct snd_util_memblk *blk);
  int snd_util_mem_avail(struct snd_util_memhdr *hdr);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
41
42
  
  /* functions without mutex */
03da312ac   Takashi Iwai   [ALSA] Remove xxx...
43
44
45
46
47
  struct snd_util_memblk *__snd_util_mem_alloc(struct snd_util_memhdr *hdr, int size);
  void __snd_util_mem_free(struct snd_util_memhdr *hdr, struct snd_util_memblk *blk);
  struct snd_util_memblk *__snd_util_memblk_new(struct snd_util_memhdr *hdr,
  					      unsigned int units,
  					      struct list_head *prev);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
48
49
  
  #endif /* __SOUND_UTIL_MEM_H */