iommu_common.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /* $Id: iommu_common.h,v 1.5 2001/12/11 09:41:01 davem Exp $
  2. * iommu_common.h: UltraSparc SBUS/PCI common iommu declarations.
  3. *
  4. * Copyright (C) 1999 David S. Miller (davem@redhat.com)
  5. */
  6. #include <linux/kernel.h>
  7. #include <linux/types.h>
  8. #include <linux/sched.h>
  9. #include <linux/mm.h>
  10. #include <linux/scatterlist.h>
  11. #include <linux/device.h>
  12. #include <asm/iommu.h>
  13. #include <asm/scatterlist.h>
  14. /*
  15. * These give mapping size of each iommu pte/tlb.
  16. */
  17. #define IO_PAGE_SHIFT 13
  18. #define IO_PAGE_SIZE (1UL << IO_PAGE_SHIFT)
  19. #define IO_PAGE_MASK (~(IO_PAGE_SIZE-1))
  20. #define IO_PAGE_ALIGN(addr) (((addr)+IO_PAGE_SIZE-1)&IO_PAGE_MASK)
  21. #define IO_TSB_ENTRIES (128*1024)
  22. #define IO_TSB_SIZE (IO_TSB_ENTRIES * 8)
  23. /*
  24. * This is the hardwired shift in the iotlb tag/data parts.
  25. */
  26. #define IOMMU_PAGE_SHIFT 13
  27. /* You are _strongly_ advised to enable the following debugging code
  28. * any time you make changes to the sg code below, run it for a while
  29. * with filesystems mounted read-only before buying the farm... -DaveM
  30. */
  31. #undef VERIFY_SG
  32. #ifdef VERIFY_SG
  33. extern void verify_sglist(struct scatterlist *sg, int nents, iopte_t *iopte, int npages);
  34. #endif
  35. /* Two addresses are "virtually contiguous" if and only if:
  36. * 1) They are equal, or...
  37. * 2) They are both on a page boundary
  38. */
  39. #define VCONTIG(__X, __Y) (((__X) == (__Y)) || \
  40. (((__X) | (__Y)) << (64UL - PAGE_SHIFT)) == 0UL)
  41. extern unsigned long prepare_sg(struct device *dev, struct scatterlist *sg, int nents);