README.allocator
上传用户:wudi5211
上传日期:2010-01-21
资源大小:607k
文件大小:4k
源码类别:

嵌入式Linux

开发平台:

C/C++

  1. The allocator shown here  exploits high memory. This document explains
  2. how  a user can  deal   with drivers uses   this  allocator and how  a
  3. programmer can link in the module.
  4. User's manual
  5. =============
  6. One of the most compelling problems with any DMA-capable device is the
  7. allocation  of a suitable  memory buffer. The "allocator" module tries
  8. to deal with  the problem in  a clean way.  The module is  able to use
  9. high   memory  (above the  one   used in  normal   operation)  for DMA
  10. allocation.
  11. To prevent  the  kernel for using   high memory,  so  that it  remains
  12. available for  DMA, you should  pass a  command  line argument to  the
  13. kernel.  Command line arguments  can be passed to  Lilo, to Loadlin or
  14. to whichever loader  you are using  (unless it's very poor in design).
  15. For Lilo, either use  "append=" in  /etc/lilo.conf or add  commandline
  16. arguments to the  interactive prompt. For  example, I have a 32MB  box
  17. and reserve two megs for DMA:
  18. In lilo.conf:
  19. image = /zImage
  20. label = linux
  21. append = "mem=30M"
  22. Or, interactively:
  23. LILO: linux mem=30M
  24. Once  the kernel is booted  with the  right command-line argument, any
  25. driver  linked   with  the  allocator   module  will  be able   to get
  26. DMA-capable memory without  much  trouble (unless the  various drivers
  27. need more memory than available).
  28. The module implements an alloc/free  mechanism,  so that it can  serve
  29. multiple drivers  at the  same time. Note  however that  the allocator
  30. uses all of  high memory and assumes to  be the only piece of software
  31. using such memory.
  32. Programmer's manual
  33. ===================
  34. The allocator,  as  released, is designed  to  be linked  to  a device
  35. driver.  In this  case, the driver  must call allocator_init()  before
  36. using   the  allocator   and  must  call   allocator_cleanup()  before
  37. unloading.  This is  usually  done   from within  init_module()    and
  38. cleanup_module(). If the allocator is linked to  a driver, it won't be
  39. possible for several drivers to allocate high DMA memory, as explained
  40. above.
  41. It is possible, on the other hand, to compile the module as a standalone
  42. module, so that several modules can rely on the allocator for they DMA
  43. buffers. To compile the allocator as a standalone module, do the
  44. following in this directory (or provide a suitable Makefile, or edit
  45. the source code):
  46. make allocator.o CC="gcc -Dallocator_init=init_module -Dallocator_cleanup=cleanup_module -include /usr/include/linux/module.h"
  47. The previous commandline  tells   to include <linux/module.h>  in  the
  48. first place,  and to rename the init  and cleanup function to the ones
  49. needed for  module loading and  unloading.  Drivers using a standalone
  50. allocator won't need to call allocator_init() nor allocator_cleanup().
  51. The allocator exports the following functions (declared in allocator.h):
  52.    unsigned long allocator_allocate_dma (unsigned long kilobytes,
  53.  int priority);
  54. This function returns a physical address, over high_memory,
  55. which corresponds to an area of at least "kilobytes" kilobytes.
  56. The area will be owned by the module calling the function.
  57. The returned address can be passed to device boards, to instruct
  58. their DMA controllers, via phys_to_bus(). The address can be used
  59. by C code after vremap()/ioremap(). The "priority" argument should
  60. be GFP_KERNEL or GFP_ATOMIC, according to the context of the
  61. caller; it is used to call kmalloc(), as the allocator must keep
  62. track of any region it gives away. In case of error the function
  63. returns 0, and the caller is expected to issue a -ENOMEM error.
  64.    void allocator_free_dma (unsigned long address);
  65. This function is the reverse of the previous one. If a driver
  66. doesn't free the DMA memory it allocated, the allocator will
  67. consider such memory as busy. Note, however, that
  68. allocator_cleanup() calls kfree() on every region it reclaimed,
  69. so that a driver with the allocator linked in can avoid calling
  70. allocator_free_dma() at unload time.