x64, x2apic/intr-remap: Interrupt remapping infrastructure
[safe/jmp/linux-2.6] / drivers / pci / intel-iommu.h
1 /*
2  * Copyright (c) 2006, Intel Corporation.
3  *
4  * This program is free software; you can redistribute it and/or modify it
5  * under the terms and conditions of the GNU General Public License,
6  * version 2, as published by the Free Software Foundation.
7  *
8  * This program is distributed in the hope it will be useful, but WITHOUT
9  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
11  * more details.
12  *
13  * You should have received a copy of the GNU General Public License along with
14  * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
15  * Place - Suite 330, Boston, MA 02111-1307 USA.
16  *
17  * Copyright (C) 2006-2008 Intel Corporation
18  * Author: Ashok Raj <ashok.raj@intel.com>
19  * Author: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
20  */
21
22 #ifndef _INTEL_IOMMU_H_
23 #define _INTEL_IOMMU_H_
24
25 #include <linux/types.h>
26 #include <linux/msi.h>
27 #include <linux/sysdev.h>
28 #include "iova.h"
29 #include <linux/io.h>
30 #include <asm/cacheflush.h>
31 #include "dma_remapping.h"
32
33 /*
34  * Intel IOMMU register specification per version 1.0 public spec.
35  */
36
37 #define DMAR_VER_REG    0x0     /* Arch version supported by this IOMMU */
38 #define DMAR_CAP_REG    0x8     /* Hardware supported capabilities */
39 #define DMAR_ECAP_REG   0x10    /* Extended capabilities supported */
40 #define DMAR_GCMD_REG   0x18    /* Global command register */
41 #define DMAR_GSTS_REG   0x1c    /* Global status register */
42 #define DMAR_RTADDR_REG 0x20    /* Root entry table */
43 #define DMAR_CCMD_REG   0x28    /* Context command reg */
44 #define DMAR_FSTS_REG   0x34    /* Fault Status register */
45 #define DMAR_FECTL_REG  0x38    /* Fault control register */
46 #define DMAR_FEDATA_REG 0x3c    /* Fault event interrupt data register */
47 #define DMAR_FEADDR_REG 0x40    /* Fault event interrupt addr register */
48 #define DMAR_FEUADDR_REG 0x44   /* Upper address register */
49 #define DMAR_AFLOG_REG  0x58    /* Advanced Fault control */
50 #define DMAR_PMEN_REG   0x64    /* Enable Protected Memory Region */
51 #define DMAR_PLMBASE_REG 0x68   /* PMRR Low addr */
52 #define DMAR_PLMLIMIT_REG 0x6c  /* PMRR low limit */
53 #define DMAR_PHMBASE_REG 0x70   /* pmrr high base addr */
54 #define DMAR_PHMLIMIT_REG 0x78  /* pmrr high limit */
55 #define DMAR_IQH_REG    0x80    /* Invalidation queue head register */
56 #define DMAR_IQT_REG    0x88    /* Invalidation queue tail register */
57 #define DMAR_IQA_REG    0x90    /* Invalidation queue addr register */
58 #define DMAR_ICS_REG    0x98    /* Invalidation complete status register */
59 #define DMAR_IRTA_REG   0xb8    /* Interrupt remapping table addr register */
60
61 #define OFFSET_STRIDE           (9)
62 /*
63 #define dmar_readl(dmar, reg) readl(dmar + reg)
64 #define dmar_readq(dmar, reg) ({ \
65                 u32 lo, hi; \
66                 lo = readl(dmar + reg); \
67                 hi = readl(dmar + reg + 4); \
68                 (((u64) hi) << 32) + lo; })
69 */
70 static inline u64 dmar_readq(void __iomem *addr)
71 {
72         u32 lo, hi;
73         lo = readl(addr);
74         hi = readl(addr + 4);
75         return (((u64) hi) << 32) + lo;
76 }
77
78 static inline void dmar_writeq(void __iomem *addr, u64 val)
79 {
80         writel((u32)val, addr);
81         writel((u32)(val >> 32), addr + 4);
82 }
83
84 #define DMAR_VER_MAJOR(v)               (((v) & 0xf0) >> 4)
85 #define DMAR_VER_MINOR(v)               ((v) & 0x0f)
86
87 /*
88  * Decoding Capability Register
89  */
90 #define cap_read_drain(c)       (((c) >> 55) & 1)
91 #define cap_write_drain(c)      (((c) >> 54) & 1)
92 #define cap_max_amask_val(c)    (((c) >> 48) & 0x3f)
93 #define cap_num_fault_regs(c)   ((((c) >> 40) & 0xff) + 1)
94 #define cap_pgsel_inv(c)        (((c) >> 39) & 1)
95
96 #define cap_super_page_val(c)   (((c) >> 34) & 0xf)
97 #define cap_super_offset(c)     (((find_first_bit(&cap_super_page_val(c), 4)) \
98                                         * OFFSET_STRIDE) + 21)
99
100 #define cap_fault_reg_offset(c) ((((c) >> 24) & 0x3ff) * 16)
101 #define cap_max_fault_reg_offset(c) \
102         (cap_fault_reg_offset(c) + cap_num_fault_regs(c) * 16)
103
104 #define cap_zlr(c)              (((c) >> 22) & 1)
105 #define cap_isoch(c)            (((c) >> 23) & 1)
106 #define cap_mgaw(c)             ((((c) >> 16) & 0x3f) + 1)
107 #define cap_sagaw(c)            (((c) >> 8) & 0x1f)
108 #define cap_caching_mode(c)     (((c) >> 7) & 1)
109 #define cap_phmr(c)             (((c) >> 6) & 1)
110 #define cap_plmr(c)             (((c) >> 5) & 1)
111 #define cap_rwbf(c)             (((c) >> 4) & 1)
112 #define cap_afl(c)              (((c) >> 3) & 1)
113 #define cap_ndoms(c)            (((unsigned long)1) << (4 + 2 * ((c) & 0x7)))
114 /*
115  * Extended Capability Register
116  */
117
118 #define ecap_niotlb_iunits(e)   ((((e) >> 24) & 0xff) + 1)
119 #define ecap_iotlb_offset(e)    ((((e) >> 8) & 0x3ff) * 16)
120 #define ecap_max_iotlb_offset(e) \
121         (ecap_iotlb_offset(e) + ecap_niotlb_iunits(e) * 16)
122 #define ecap_coherent(e)        ((e) & 0x1)
123 #define ecap_qis(e)             ((e) & 0x2)
124 #define ecap_eim_support(e)     ((e >> 4) & 0x1)
125 #define ecap_ir_support(e)      ((e >> 3) & 0x1)
126
127
128 /* IOTLB_REG */
129 #define DMA_TLB_GLOBAL_FLUSH (((u64)1) << 60)
130 #define DMA_TLB_DSI_FLUSH (((u64)2) << 60)
131 #define DMA_TLB_PSI_FLUSH (((u64)3) << 60)
132 #define DMA_TLB_IIRG(type) ((type >> 60) & 7)
133 #define DMA_TLB_IAIG(val) (((val) >> 57) & 7)
134 #define DMA_TLB_READ_DRAIN (((u64)1) << 49)
135 #define DMA_TLB_WRITE_DRAIN (((u64)1) << 48)
136 #define DMA_TLB_DID(id) (((u64)((id) & 0xffff)) << 32)
137 #define DMA_TLB_IVT (((u64)1) << 63)
138 #define DMA_TLB_IH_NONLEAF (((u64)1) << 6)
139 #define DMA_TLB_MAX_SIZE (0x3f)
140
141 /* INVALID_DESC */
142 #define DMA_ID_TLB_GLOBAL_FLUSH (((u64)1) << 3)
143 #define DMA_ID_TLB_DSI_FLUSH    (((u64)2) << 3)
144 #define DMA_ID_TLB_PSI_FLUSH    (((u64)3) << 3)
145 #define DMA_ID_TLB_READ_DRAIN   (((u64)1) << 7)
146 #define DMA_ID_TLB_WRITE_DRAIN  (((u64)1) << 6)
147 #define DMA_ID_TLB_DID(id)      (((u64)((id & 0xffff) << 16)))
148 #define DMA_ID_TLB_IH_NONLEAF   (((u64)1) << 6)
149 #define DMA_ID_TLB_ADDR(addr)   (addr)
150 #define DMA_ID_TLB_ADDR_MASK(mask)      (mask)
151
152 /* PMEN_REG */
153 #define DMA_PMEN_EPM (((u32)1)<<31)
154 #define DMA_PMEN_PRS (((u32)1)<<0)
155
156 /* GCMD_REG */
157 #define DMA_GCMD_TE (((u32)1) << 31)
158 #define DMA_GCMD_SRTP (((u32)1) << 30)
159 #define DMA_GCMD_SFL (((u32)1) << 29)
160 #define DMA_GCMD_EAFL (((u32)1) << 28)
161 #define DMA_GCMD_WBF (((u32)1) << 27)
162 #define DMA_GCMD_QIE (((u32)1) << 26)
163 #define DMA_GCMD_SIRTP (((u32)1) << 24)
164 #define DMA_GCMD_IRE (((u32) 1) << 25)
165
166 /* GSTS_REG */
167 #define DMA_GSTS_TES (((u32)1) << 31)
168 #define DMA_GSTS_RTPS (((u32)1) << 30)
169 #define DMA_GSTS_FLS (((u32)1) << 29)
170 #define DMA_GSTS_AFLS (((u32)1) << 28)
171 #define DMA_GSTS_WBFS (((u32)1) << 27)
172 #define DMA_GSTS_QIES (((u32)1) << 26)
173 #define DMA_GSTS_IRTPS (((u32)1) << 24)
174 #define DMA_GSTS_IRES (((u32)1) << 25)
175
176 /* CCMD_REG */
177 #define DMA_CCMD_ICC (((u64)1) << 63)
178 #define DMA_CCMD_GLOBAL_INVL (((u64)1) << 61)
179 #define DMA_CCMD_DOMAIN_INVL (((u64)2) << 61)
180 #define DMA_CCMD_DEVICE_INVL (((u64)3) << 61)
181 #define DMA_CCMD_FM(m) (((u64)((m) & 0x3)) << 32)
182 #define DMA_CCMD_MASK_NOBIT 0
183 #define DMA_CCMD_MASK_1BIT 1
184 #define DMA_CCMD_MASK_2BIT 2
185 #define DMA_CCMD_MASK_3BIT 3
186 #define DMA_CCMD_SID(s) (((u64)((s) & 0xffff)) << 16)
187 #define DMA_CCMD_DID(d) ((u64)((d) & 0xffff))
188
189 /* FECTL_REG */
190 #define DMA_FECTL_IM (((u32)1) << 31)
191
192 /* FSTS_REG */
193 #define DMA_FSTS_PPF ((u32)2)
194 #define DMA_FSTS_PFO ((u32)1)
195 #define dma_fsts_fault_record_index(s) (((s) >> 8) & 0xff)
196
197 /* FRCD_REG, 32 bits access */
198 #define DMA_FRCD_F (((u32)1) << 31)
199 #define dma_frcd_type(d) ((d >> 30) & 1)
200 #define dma_frcd_fault_reason(c) (c & 0xff)
201 #define dma_frcd_source_id(c) (c & 0xffff)
202 #define dma_frcd_page_addr(d) (d & (((u64)-1) << 12)) /* low 64 bit */
203
204 #define DMAR_OPERATION_TIMEOUT ((cycles_t) tsc_khz*10*1000) /* 10sec */
205
206 #define IOMMU_WAIT_OP(iommu, offset, op, cond, sts) \
207 {\
208         cycles_t start_time = get_cycles();\
209         while (1) {\
210                 sts = op (iommu->reg + offset);\
211                 if (cond)\
212                         break;\
213                 if (DMAR_OPERATION_TIMEOUT < (get_cycles() - start_time))\
214                         panic("DMAR hardware is malfunctioning\n");\
215                 cpu_relax();\
216         }\
217 }
218
219 #define QI_LENGTH       256     /* queue length */
220
221 enum {
222         QI_FREE,
223         QI_IN_USE,
224         QI_DONE
225 };
226
227 #define QI_CC_TYPE              0x1
228 #define QI_IOTLB_TYPE           0x2
229 #define QI_DIOTLB_TYPE          0x3
230 #define QI_IEC_TYPE             0x4
231 #define QI_IWD_TYPE             0x5
232
233 #define QI_IEC_SELECTIVE        (((u64)1) << 4)
234 #define QI_IEC_IIDEX(idx)       (((u64)(idx & 0xffff) << 32))
235 #define QI_IEC_IM(m)            (((u64)(m & 0x1f) << 27))
236
237 #define QI_IWD_STATUS_DATA(d)   (((u64)d) << 32)
238 #define QI_IWD_STATUS_WRITE     (((u64)1) << 5)
239
240 struct qi_desc {
241         u64 low, high;
242 };
243
244 struct q_inval {
245         spinlock_t      q_lock;
246         struct qi_desc  *desc;          /* invalidation queue */
247         int             *desc_status;   /* desc status */
248         int             free_head;      /* first free entry */
249         int             free_tail;      /* last free entry */
250         int             free_cnt;
251 };
252
253 #ifdef CONFIG_INTR_REMAP
254 /* 1MB - maximum possible interrupt remapping table size */
255 #define INTR_REMAP_PAGE_ORDER   8
256 #define INTR_REMAP_TABLE_REG_SIZE       0xf
257
258 struct ir_table {
259         struct irte *base;
260 };
261 #endif
262
263 struct intel_iommu {
264         void __iomem    *reg; /* Pointer to hardware regs, virtual addr */
265         u64             cap;
266         u64             ecap;
267         int             seg;
268         u32             gcmd; /* Holds TE, EAFL. Don't need SRTP, SFL, WBF */
269         spinlock_t      register_lock; /* protect register handling */
270         int             seq_id; /* sequence id of the iommu */
271
272 #ifdef CONFIG_DMAR
273         unsigned long   *domain_ids; /* bitmap of domains */
274         struct dmar_domain **domains; /* ptr to domains */
275         spinlock_t      lock; /* protect context, domain ids */
276         struct root_entry *root_entry; /* virtual address */
277
278         unsigned int irq;
279         unsigned char name[7];    /* Device Name */
280         struct msi_msg saved_msg;
281         struct sys_device sysdev;
282 #endif
283         struct q_inval  *qi;            /* Queued invalidation info */
284 #ifdef CONFIG_INTR_REMAP
285         struct ir_table *ir_table;      /* Interrupt remapping info */
286 #endif
287 };
288
289 static inline void __iommu_flush_cache(
290         struct intel_iommu *iommu, void *addr, int size)
291 {
292         if (!ecap_coherent(iommu->ecap))
293                 clflush_cache_range(addr, size);
294 }
295
296 extern struct dmar_drhd_unit * dmar_find_matched_drhd_unit(struct pci_dev *dev);
297
298 extern int alloc_iommu(struct dmar_drhd_unit *drhd);
299 extern void free_iommu(struct intel_iommu *iommu);
300 extern int dmar_enable_qi(struct intel_iommu *iommu);
301 extern void qi_global_iec(struct intel_iommu *iommu);
302
303 #endif