io-unit.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:3k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* io-unit.h: Definitions for the sun4d IO-UNIT.
  2.  *
  3.  * Copyright (C) 1997,1998 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
  4.  */
  5. #ifndef _SPARC_IO_UNIT_H
  6. #define _SPARC_IO_UNIT_H
  7. #include <linux/spinlock.h>
  8. #include <asm/page.h>
  9. #include <asm/pgtable.h>
  10. /* The io-unit handles all virtual to physical address translations
  11.  * that occur between the SBUS and physical memory.  Access by
  12.  * the cpu to IO registers and similar go over the xdbus so are
  13.  * translated by the on chip SRMMU.  The io-unit and the srmmu do
  14.  * not need to have the same translations at all, in fact most
  15.  * of the time the translations they handle are a disjunct set.
  16.  * Basically the io-unit handles all dvma sbus activity.
  17.  */
  18.  
  19. /* AIEEE, unlike the nice sun4m, these monsters have 
  20.    fixed DMA range 64M */
  21.  
  22. #define IOUNIT_DMA_BASE     0xfc000000 /* TOP - 64M */
  23. #define IOUNIT_DMA_SIZE     0x04000000 /* 64M */
  24. /* We use last 1M for sparc_dvma_malloc */
  25. #define IOUNIT_DVMA_SIZE    0x00100000 /* 1M */
  26. /* The format of an iopte in the external page tables */
  27. #define IOUPTE_PAGE          0xffffff00 /* Physical page number (PA[35:12]) */
  28. #define IOUPTE_CACHE         0x00000080 /* Cached (in Viking/MXCC) */
  29. /* XXX Jakub, find out how to program SBUS streaming cache on XDBUS/sun4d.
  30.  * XXX Actually, all you should need to do is find out where the registers
  31.  * XXX are and copy over the sparc64 implementation I wrote.  There may be
  32.  * XXX some horrible hwbugs though, so be careful.  -DaveM
  33.  */
  34. #define IOUPTE_STREAM        0x00000040 /* Translation can use streaming cache */
  35. #define IOUPTE_INTRA      0x00000008 /* SBUS direct slot->slot transfer */
  36. #define IOUPTE_WRITE         0x00000004 /* Writeable */
  37. #define IOUPTE_VALID         0x00000002 /* IOPTE is valid */
  38. #define IOUPTE_PARITY        0x00000001 /* Parity is checked during DVMA */
  39. struct iounit_struct {
  40. unsigned int bmap[(IOUNIT_DMA_SIZE >> (PAGE_SHIFT + 3)) / sizeof(unsigned int)];
  41. spinlock_t lock;
  42. iopte_t *page_table;
  43. unsigned long rotor[3];
  44. unsigned long limit[4];
  45. };
  46. #define IOUNIT_BMAP1_START 0x00000000
  47. #define IOUNIT_BMAP1_END (IOUNIT_DMA_SIZE >> (PAGE_SHIFT + 1))
  48. #define IOUNIT_BMAP2_START IOUNIT_BMAP1_END
  49. #define IOUNIT_BMAP2_END IOUNIT_BMAP2_START + (IOUNIT_DMA_SIZE >> (PAGE_SHIFT + 2))
  50. #define IOUNIT_BMAPM_START IOUNIT_BMAP2_END
  51. #define IOUNIT_BMAPM_END ((IOUNIT_DMA_SIZE - IOUNIT_DVMA_SIZE) >> PAGE_SHIFT)
  52. extern __u32 iounit_map_dma_init(struct sbus_bus *, int);
  53. #define iounit_map_dma_finish(sbus, addr, len) mmu_release_scsi_one(addr, len, sbus)
  54. extern __u32 iounit_map_dma_page(__u32, void *, struct sbus_bus *);
  55. #endif /* !(_SPARC_IO_UNIT_H) */