ip32-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  Ralf Baechle <ralf@gnu.org>
  8.  * swiped from i386, and cloned for MIPS by Geert, polished by Ralf.
  9.  */
  10. #include <linux/types.h>
  11. #include <linux/mm.h>
  12. #include <linux/string.h>
  13. #include <linux/pci.h>
  14. #include <asm/io.h>
  15. #include <asm/addrspace.h>
  16. #include <asm/ip32/mace.h>
  17. void *pci_alloc_consistent(struct pci_dev *hwdev, size_t size,
  18.    dma_addr_t * dma_handle)
  19. {
  20. void *ret;
  21. int gfp = GFP_ATOMIC;
  22. if (hwdev == NULL || hwdev->dma_mask != 0xffffffff)
  23. gfp |= GFP_DMA;
  24. ret = (void *) __get_free_pages(gfp, get_order(size));
  25. if (ret != NULL) {
  26. memset(ret, 0, size);
  27. dma_cache_wback_inv((unsigned long) ret, size);
  28. *dma_handle = virt_to_bus(ret);
  29. }
  30. return ret;
  31. }
  32. void pci_free_consistent(struct pci_dev *hwdev, size_t size,
  33.  void *vaddr, dma_addr_t dma_handle)
  34. {
  35. free_pages((unsigned long) vaddr, get_order(size));
  36. }