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

嵌入式Linux

开发平台:

Unix_Linux

  1. #include <linux/types.h>
  2. #include <linux/kernel.h>
  3. #include <linux/mm.h>
  4. #include <linux/kd.h>
  5. #include <linux/tty.h>
  6. #include <linux/console.h>
  7. #include <asm/setup.h>
  8. #include <asm/bootinfo.h>
  9. #include <asm/system.h>
  10. #include <asm/pgtable.h>
  11. #include <asm/apollodma.h>
  12. /* note only works for 16 Bit 1 page DMA's */
  13. static unsigned short next_free_xlat_entry=0;
  14. unsigned short dma_map_page(unsigned long phys_addr,int count,int type) {
  15. unsigned long page_aligned_addr=phys_addr & (~((1<<12)-1));
  16. unsigned short start_map_addr=page_aligned_addr >> 10;
  17. unsigned short free_xlat_entry, *xlat_map_entry;
  18. int i;
  19. free_xlat_entry=next_free_xlat_entry;
  20. for(i=0,xlat_map_entry=addr_xlat_map+(free_xlat_entry<<2);i<8;i++,xlat_map_entry++) {
  21. #if 0
  22. printk("phys_addr: %x, page_aligned_addr: %x, start_map_addr: %xn",phys_addr,page_aligned_addr,start_map_addr+i);
  23. #endif
  24. outw(start_map_addr+i, xlat_map_entry);
  25. }
  26. next_free_xlat_entry+=2;
  27. if(next_free_xlat_entry>125)
  28. next_free_xlat_entry=0;
  29. #if 0
  30. printk("next_free_xlat_entry: %dn",next_free_xlat_entry);
  31. #endif
  32. return free_xlat_entry<<10;
  33. }
  34. void dma_unmap_page(unsigned short dma_addr) {
  35. return ;
  36. }