vmalloc.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _LINUX_VMALLOC_H
  2. #define _LINUX_VMALLOC_H
  3. #include <linux/spinlock.h>
  4. #include <asm/page.h> /* pgprot_t */
  5. /* bits in vm_struct->flags */
  6. #define VM_IOREMAP 0x00000001 /* ioremap() and friends */
  7. #define VM_ALLOC 0x00000002 /* vmalloc() */
  8. #define VM_MAP 0x00000004 /* vmap()ed pages */
  9. /* bits [20..32] reserved for arch specific ioremap internals */
  10. /*
  11.  * Maximum alignment for ioremap() regions.
  12.  * Can be overriden by arch-specific value.
  13.  */
  14. #ifndef IOREMAP_MAX_ORDER
  15. #define IOREMAP_MAX_ORDER (7 + PAGE_SHIFT) /* 128 pages */
  16. #endif
  17. struct vm_struct {
  18. void *addr;
  19. unsigned long size;
  20. unsigned long flags;
  21. struct page **pages;
  22. unsigned int nr_pages;
  23. unsigned long phys_addr;
  24. struct vm_struct *next;
  25. };
  26. /*
  27.  * Highlevel APIs for driver use
  28.  */
  29. extern void *vmalloc(unsigned long size);
  30. extern void *vmalloc_exec(unsigned long size);
  31. extern void *vmalloc_32(unsigned long size);
  32. extern void *__vmalloc(unsigned long size, gfp_t gfp_mask, pgprot_t prot);
  33. extern void *__vmalloc_area(struct vm_struct *area, gfp_t gfp_mask, pgprot_t prot);
  34. extern void vfree(void *addr);
  35. extern void *vmap(struct page **pages, unsigned int count,
  36. unsigned long flags, pgprot_t prot);
  37. extern void vunmap(void *addr);
  38.  
  39. /*
  40.  * Lowlevel-APIs (not for driver use!)
  41.  */
  42. extern struct vm_struct *get_vm_area(unsigned long size, unsigned long flags);
  43. extern struct vm_struct *__get_vm_area(unsigned long size, unsigned long flags,
  44. unsigned long start, unsigned long end);
  45. extern struct vm_struct *remove_vm_area(void *addr);
  46. extern struct vm_struct *__remove_vm_area(void *addr);
  47. extern int map_vm_area(struct vm_struct *area, pgprot_t prot,
  48. struct page ***pages);
  49. extern void unmap_vm_area(struct vm_struct *area);
  50. /*
  51.  * Internals.  Dont't use..
  52.  */
  53. extern rwlock_t vmlist_lock;
  54. extern struct vm_struct *vmlist;
  55. #endif /* _LINUX_VMALLOC_H */