iommu_64.h 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /* iommu.h: Definitions for the sun5 IOMMU.
  3. *
  4. * Copyright (C) 1996, 1999, 2007 David S. Miller ([email protected])
  5. */
  6. #ifndef _SPARC64_IOMMU_H
  7. #define _SPARC64_IOMMU_H
  8. /* The format of an iopte in the page tables. */
  9. #define IOPTE_VALID 0x8000000000000000UL
  10. #define IOPTE_64K 0x2000000000000000UL
  11. #define IOPTE_STBUF 0x1000000000000000UL
  12. #define IOPTE_INTRA 0x0800000000000000UL
  13. #define IOPTE_CONTEXT 0x07ff800000000000UL
  14. #define IOPTE_PAGE 0x00007fffffffe000UL
  15. #define IOPTE_CACHE 0x0000000000000010UL
  16. #define IOPTE_WRITE 0x0000000000000002UL
  17. #define IOMMU_NUM_CTXS 4096
  18. #include <asm/iommu-common.h>
  19. struct iommu_arena {
  20. unsigned long *map;
  21. unsigned int hint;
  22. unsigned int limit;
  23. };
  24. #define ATU_64_SPACE_SIZE 0x800000000 /* 32G */
  25. /* Data structures for SPARC ATU architecture */
  26. struct atu_iotsb {
  27. void *table; /* IOTSB table base virtual addr*/
  28. u64 ra; /* IOTSB table real addr */
  29. u64 dvma_size; /* ranges[3].size or OS slected 32G size */
  30. u64 dvma_base; /* ranges[3].base */
  31. u64 table_size; /* IOTSB table size */
  32. u64 page_size; /* IO PAGE size for IOTSB */
  33. u32 iotsb_num; /* tsbnum is same as iotsb_handle */
  34. };
  35. struct atu_ranges {
  36. u64 base;
  37. u64 size;
  38. };
  39. struct atu {
  40. struct atu_ranges *ranges;
  41. struct atu_iotsb *iotsb;
  42. struct iommu_map_table tbl;
  43. u64 base;
  44. u64 size;
  45. u64 dma_addr_mask;
  46. };
  47. struct iommu {
  48. struct iommu_map_table tbl;
  49. struct atu *atu;
  50. spinlock_t lock;
  51. u32 dma_addr_mask;
  52. iopte_t *page_table;
  53. unsigned long iommu_control;
  54. unsigned long iommu_tsbbase;
  55. unsigned long iommu_flush;
  56. unsigned long iommu_flushinv;
  57. unsigned long iommu_tags;
  58. unsigned long iommu_ctxflush;
  59. unsigned long write_complete_reg;
  60. unsigned long dummy_page;
  61. unsigned long dummy_page_pa;
  62. unsigned long ctx_lowest_free;
  63. DECLARE_BITMAP(ctx_bitmap, IOMMU_NUM_CTXS);
  64. };
  65. struct strbuf {
  66. int strbuf_enabled;
  67. unsigned long strbuf_control;
  68. unsigned long strbuf_pflush;
  69. unsigned long strbuf_fsync;
  70. unsigned long strbuf_err_stat;
  71. unsigned long strbuf_tag_diag;
  72. unsigned long strbuf_line_diag;
  73. unsigned long strbuf_ctxflush;
  74. unsigned long strbuf_ctxmatch_base;
  75. unsigned long strbuf_flushflag_pa;
  76. volatile unsigned long *strbuf_flushflag;
  77. volatile unsigned long __flushflag_buf[(64+(64-1)) / sizeof(long)];
  78. };
  79. int iommu_table_init(struct iommu *iommu, int tsbsize,
  80. u32 dma_offset, u32 dma_addr_mask,
  81. int numa_node);
  82. #endif /* !(_SPARC64_IOMMU_H) */