ctvmem.h 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /**
  2. * Copyright (C) 2008, Creative Technology Ltd. All Rights Reserved.
  3. *
  4. * This source file is released under GPL v2 license (no other versions).
  5. * See the COPYING file included in the main directory of this source
  6. * distribution for the license terms and conditions.
  7. *
  8. * @File ctvmem.h
  9. *
  10. * @Brief
  11. * This file contains the definition of virtual memory management object
  12. * for card device.
  13. *
  14. * @Author Liu Chun
  15. * @Date Mar 28 2008
  16. */
  17. #ifndef CTVMEM_H
  18. #define CTVMEM_H
  19. #define CT_PTP_NUM 4 /* num of device page table pages */
  20. #include <linux/mutex.h>
  21. #include <linux/list.h>
  22. #include <linux/pci.h>
  23. #include <sound/memalloc.h>
  24. /* The chip can handle the page table of 4k pages
  25. * (emu20k1 can handle even 8k pages, but we don't use it right now)
  26. */
  27. #define CT_PAGE_SIZE 4096
  28. #define CT_PAGE_SHIFT 12
  29. #define CT_PAGE_MASK (~(PAGE_SIZE - 1))
  30. #define CT_PAGE_ALIGN(addr) ALIGN(addr, CT_PAGE_SIZE)
  31. struct ct_vm_block {
  32. unsigned int addr; /* starting logical addr of this block */
  33. unsigned int size; /* size of this device virtual mem block */
  34. struct list_head list;
  35. };
  36. struct snd_pcm_substream;
  37. /* Virtual memory management object for card device */
  38. struct ct_vm {
  39. struct snd_dma_buffer ptp[CT_PTP_NUM]; /* Device page table pages */
  40. unsigned int size; /* Available addr space in bytes */
  41. struct list_head unused; /* List of unused blocks */
  42. struct list_head used; /* List of used blocks */
  43. struct mutex lock;
  44. /* Map host addr (kmalloced/vmalloced) to device logical addr. */
  45. struct ct_vm_block *(*map)(struct ct_vm *, struct snd_pcm_substream *,
  46. int size);
  47. /* Unmap device logical addr area. */
  48. void (*unmap)(struct ct_vm *, struct ct_vm_block *block);
  49. dma_addr_t (*get_ptp_phys)(struct ct_vm *vm, int index);
  50. };
  51. int ct_vm_create(struct ct_vm **rvm, struct pci_dev *pci);
  52. void ct_vm_destroy(struct ct_vm *vm);
  53. #endif /* CTVMEM_H */