blob: 93daa5965b3d26a7cf4b900ef63b7702d93d57fa [file] [log] [blame]
Sam Ravnborgf5e706a2008-07-17 21:55:51 -07001/* iommu.h: Definitions for the sun5 IOMMU.
2 *
3 * Copyright (C) 1996, 1999, 2007 David S. Miller (davem@davemloft.net)
4 */
5#ifndef _SPARC64_IOMMU_H
6#define _SPARC64_IOMMU_H
7
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
18#define IOMMU_NUM_CTXS 4096
Sowmini Varadhanbb620c32015-04-09 15:33:31 -040019#include <linux/iommu-common.h>
Sam Ravnborgf5e706a2008-07-17 21:55:51 -070020
21struct iommu_arena {
22 unsigned long *map;
23 unsigned int hint;
24 unsigned int limit;
25};
26
Tushar Davef0248c12016-10-28 10:12:41 -070027#define ATU_64_SPACE_SIZE 0x800000000 /* 32G */
28
29/* Data structures for SPARC ATU architecture */
30struct atu_iotsb {
31 void *table; /* IOTSB table base virtual addr*/
32 u64 ra; /* IOTSB table real addr */
33 u64 dvma_size; /* ranges[3].size or OS slected 32G size */
34 u64 dvma_base; /* ranges[3].base */
35 u64 table_size; /* IOTSB table size */
36 u64 page_size; /* IO PAGE size for IOTSB */
37 u32 iotsb_num; /* tsbnum is same as iotsb_handle */
38};
39
40struct atu_ranges {
41 u64 base;
42 u64 size;
43};
44
45struct atu {
46 struct atu_ranges *ranges;
47 struct atu_iotsb *iotsb;
48 u64 base;
49 u64 size;
50};
51
Sam Ravnborgf5e706a2008-07-17 21:55:51 -070052struct iommu {
Sowmini Varadhanbb620c32015-04-09 15:33:31 -040053 struct iommu_map_table tbl;
Tushar Davef0248c12016-10-28 10:12:41 -070054 struct atu *atu;
Sam Ravnborgf5e706a2008-07-17 21:55:51 -070055 spinlock_t lock;
Sowmini Varadhanbb620c32015-04-09 15:33:31 -040056 u32 dma_addr_mask;
Sam Ravnborgf5e706a2008-07-17 21:55:51 -070057 iopte_t *page_table;
Sam Ravnborgf5e706a2008-07-17 21:55:51 -070058 unsigned long iommu_control;
59 unsigned long iommu_tsbbase;
60 unsigned long iommu_flush;
61 unsigned long iommu_flushinv;
62 unsigned long iommu_tags;
63 unsigned long iommu_ctxflush;
64 unsigned long write_complete_reg;
65 unsigned long dummy_page;
66 unsigned long dummy_page_pa;
67 unsigned long ctx_lowest_free;
68 DECLARE_BITMAP(ctx_bitmap, IOMMU_NUM_CTXS);
Sam Ravnborgf5e706a2008-07-17 21:55:51 -070069};
70
71struct strbuf {
72 int strbuf_enabled;
73 unsigned long strbuf_control;
74 unsigned long strbuf_pflush;
75 unsigned long strbuf_fsync;
David S. Millerd3ae4b52008-09-09 23:54:02 -070076 unsigned long strbuf_err_stat;
77 unsigned long strbuf_tag_diag;
78 unsigned long strbuf_line_diag;
Sam Ravnborgf5e706a2008-07-17 21:55:51 -070079 unsigned long strbuf_ctxflush;
80 unsigned long strbuf_ctxmatch_base;
81 unsigned long strbuf_flushflag_pa;
82 volatile unsigned long *strbuf_flushflag;
83 volatile unsigned long __flushflag_buf[(64+(64-1)) / sizeof(long)];
84};
85
Sam Ravnborgf05a6862014-05-16 23:25:50 +020086int iommu_table_init(struct iommu *iommu, int tsbsize,
87 u32 dma_offset, u32 dma_addr_mask,
88 int numa_node);
Sam Ravnborgf5e706a2008-07-17 21:55:51 -070089
90#endif /* !(_SPARC64_IOMMU_H) */