pci-dma.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * This file is subject to the terms and conditions of the GNU General Public
  3.  * License.  See the file "COPYING" in the main directory of this archive
  4.  * for more details.
  5.  *
  6.  * Copyright (C) 2000  Ani Joshi <ajoshi@unixbox.com>
  7.  * Copyright (C) 2000, 2001  Ralf Baechle <ralf@gnu.org>
  8.  * swiped from i386, and cloned for MIPS by Geert, polished by Ralf.
  9.  */
  10. #include <linux/config.h>
  11. #include <linux/types.h>
  12. #include <linux/mm.h>
  13. #include <linux/string.h>
  14. #include <linux/pci.h>
  15. #include <asm/io.h>
  16. void *pci_alloc_consistent(struct pci_dev *hwdev, size_t size,
  17.    dma_addr_t * dma_handle)
  18. {
  19. void *ret;
  20. int gfp = GFP_ATOMIC;
  21. if (hwdev == NULL || hwdev->dma_mask != 0xffffffff)
  22. gfp |= GFP_DMA;
  23. ret = (void *) __get_free_pages(gfp, get_order(size));
  24. if (ret != NULL) {
  25. memset(ret, 0, size);
  26. #ifndef CONFIG_COHERENT_IO
  27. dma_cache_wback_inv((unsigned long) ret, size);
  28. ret = KSEG1ADDR(ret);
  29. #endif
  30. *dma_handle = virt_to_bus(ret);
  31. }
  32. return ret;
  33. }
  34. void pci_free_consistent(struct pci_dev *hwdev, size_t size,
  35.  void *vaddr, dma_addr_t dma_handle)
  36. {
  37. unsigned long addr = (unsigned long) vaddr;
  38. #ifndef CONFIG_COHERENT_IO
  39. addr = KSEG0ADDR(addr);
  40. #endif
  41. free_pages(addr, get_order(size));
  42. }