x64, x2apic/intr-remap: parse ioapic scope under vt-d structures
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / pci / intel-iommu.h
CommitLineData
ba395927
KA
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 *
98bcef56 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>
ba395927
KA
20 */
21
22#ifndef _INTEL_IOMMU_H_
23#define _INTEL_IOMMU_H_
24
25#include <linux/types.h>
26#include <linux/msi.h>
f661197e 27#include <linux/sysdev.h>
ba395927
KA
28#include "iova.h"
29#include <linux/io.h>
e61d98d8 30#include "dma_remapping.h"
f661197e 31
ba395927
KA
32/*
33 * Intel IOMMU register specification per version 1.0 public spec.
34 */
35
36#define DMAR_VER_REG 0x0 /* Arch version supported by this IOMMU */
37#define DMAR_CAP_REG 0x8 /* Hardware supported capabilities */
38#define DMAR_ECAP_REG 0x10 /* Extended capabilities supported */
39#define DMAR_GCMD_REG 0x18 /* Global command register */
40#define DMAR_GSTS_REG 0x1c /* Global status register */
41#define DMAR_RTADDR_REG 0x20 /* Root entry table */
42#define DMAR_CCMD_REG 0x28 /* Context command reg */
43#define DMAR_FSTS_REG 0x34 /* Fault Status register */
44#define DMAR_FECTL_REG 0x38 /* Fault control register */
45#define DMAR_FEDATA_REG 0x3c /* Fault event interrupt data register */
46#define DMAR_FEADDR_REG 0x40 /* Fault event interrupt addr register */
47#define DMAR_FEUADDR_REG 0x44 /* Upper address register */
48#define DMAR_AFLOG_REG 0x58 /* Advanced Fault control */
49#define DMAR_PMEN_REG 0x64 /* Enable Protected Memory Region */
50#define DMAR_PLMBASE_REG 0x68 /* PMRR Low addr */
51#define DMAR_PLMLIMIT_REG 0x6c /* PMRR low limit */
52#define DMAR_PHMBASE_REG 0x70 /* pmrr high base addr */
53#define DMAR_PHMLIMIT_REG 0x78 /* pmrr high limit */
54
55#define OFFSET_STRIDE (9)
56/*
57#define dmar_readl(dmar, reg) readl(dmar + reg)
58#define dmar_readq(dmar, reg) ({ \
59 u32 lo, hi; \
60 lo = readl(dmar + reg); \
61 hi = readl(dmar + reg + 4); \
62 (((u64) hi) << 32) + lo; })
63*/
4fe05bbc 64static inline u64 dmar_readq(void __iomem *addr)
ba395927
KA
65{
66 u32 lo, hi;
67 lo = readl(addr);
68 hi = readl(addr + 4);
69 return (((u64) hi) << 32) + lo;
70}
71
72static inline void dmar_writeq(void __iomem *addr, u64 val)
73{
74 writel((u32)val, addr);
75 writel((u32)(val >> 32), addr + 4);
76}
77
78#define DMAR_VER_MAJOR(v) (((v) & 0xf0) >> 4)
79#define DMAR_VER_MINOR(v) ((v) & 0x0f)
80
81/*
82 * Decoding Capability Register
83 */
84#define cap_read_drain(c) (((c) >> 55) & 1)
85#define cap_write_drain(c) (((c) >> 54) & 1)
86#define cap_max_amask_val(c) (((c) >> 48) & 0x3f)
87#define cap_num_fault_regs(c) ((((c) >> 40) & 0xff) + 1)
88#define cap_pgsel_inv(c) (((c) >> 39) & 1)
89
90#define cap_super_page_val(c) (((c) >> 34) & 0xf)
91#define cap_super_offset(c) (((find_first_bit(&cap_super_page_val(c), 4)) \
92 * OFFSET_STRIDE) + 21)
93
94#define cap_fault_reg_offset(c) ((((c) >> 24) & 0x3ff) * 16)
95#define cap_max_fault_reg_offset(c) \
96 (cap_fault_reg_offset(c) + cap_num_fault_regs(c) * 16)
97
98#define cap_zlr(c) (((c) >> 22) & 1)
99#define cap_isoch(c) (((c) >> 23) & 1)
100#define cap_mgaw(c) ((((c) >> 16) & 0x3f) + 1)
101#define cap_sagaw(c) (((c) >> 8) & 0x1f)
102#define cap_caching_mode(c) (((c) >> 7) & 1)
103#define cap_phmr(c) (((c) >> 6) & 1)
104#define cap_plmr(c) (((c) >> 5) & 1)
105#define cap_rwbf(c) (((c) >> 4) & 1)
106#define cap_afl(c) (((c) >> 3) & 1)
107#define cap_ndoms(c) (((unsigned long)1) << (4 + 2 * ((c) & 0x7)))
108/*
109 * Extended Capability Register
110 */
111
112#define ecap_niotlb_iunits(e) ((((e) >> 24) & 0xff) + 1)
113#define ecap_iotlb_offset(e) ((((e) >> 8) & 0x3ff) * 16)
114#define ecap_max_iotlb_offset(e) \
115 (ecap_iotlb_offset(e) + ecap_niotlb_iunits(e) * 16)
116#define ecap_coherent(e) ((e) & 0x1)
ad3ad3f6
SS
117#define ecap_eim_support(e) ((e >> 4) & 0x1)
118#define ecap_ir_support(e) ((e >> 3) & 0x1)
ba395927
KA
119
120
121/* IOTLB_REG */
122#define DMA_TLB_GLOBAL_FLUSH (((u64)1) << 60)
123#define DMA_TLB_DSI_FLUSH (((u64)2) << 60)
124#define DMA_TLB_PSI_FLUSH (((u64)3) << 60)
125#define DMA_TLB_IIRG(type) ((type >> 60) & 7)
126#define DMA_TLB_IAIG(val) (((val) >> 57) & 7)
127#define DMA_TLB_READ_DRAIN (((u64)1) << 49)
128#define DMA_TLB_WRITE_DRAIN (((u64)1) << 48)
129#define DMA_TLB_DID(id) (((u64)((id) & 0xffff)) << 32)
130#define DMA_TLB_IVT (((u64)1) << 63)
131#define DMA_TLB_IH_NONLEAF (((u64)1) << 6)
132#define DMA_TLB_MAX_SIZE (0x3f)
133
f8bab735 134/* PMEN_REG */
135#define DMA_PMEN_EPM (((u32)1)<<31)
136#define DMA_PMEN_PRS (((u32)1)<<0)
137
ba395927
KA
138/* GCMD_REG */
139#define DMA_GCMD_TE (((u32)1) << 31)
140#define DMA_GCMD_SRTP (((u32)1) << 30)
141#define DMA_GCMD_SFL (((u32)1) << 29)
142#define DMA_GCMD_EAFL (((u32)1) << 28)
143#define DMA_GCMD_WBF (((u32)1) << 27)
144
145/* GSTS_REG */
146#define DMA_GSTS_TES (((u32)1) << 31)
147#define DMA_GSTS_RTPS (((u32)1) << 30)
148#define DMA_GSTS_FLS (((u32)1) << 29)
149#define DMA_GSTS_AFLS (((u32)1) << 28)
150#define DMA_GSTS_WBFS (((u32)1) << 27)
151
152/* CCMD_REG */
153#define DMA_CCMD_ICC (((u64)1) << 63)
154#define DMA_CCMD_GLOBAL_INVL (((u64)1) << 61)
155#define DMA_CCMD_DOMAIN_INVL (((u64)2) << 61)
156#define DMA_CCMD_DEVICE_INVL (((u64)3) << 61)
157#define DMA_CCMD_FM(m) (((u64)((m) & 0x3)) << 32)
158#define DMA_CCMD_MASK_NOBIT 0
159#define DMA_CCMD_MASK_1BIT 1
160#define DMA_CCMD_MASK_2BIT 2
161#define DMA_CCMD_MASK_3BIT 3
162#define DMA_CCMD_SID(s) (((u64)((s) & 0xffff)) << 16)
163#define DMA_CCMD_DID(d) ((u64)((d) & 0xffff))
164
165/* FECTL_REG */
166#define DMA_FECTL_IM (((u32)1) << 31)
167
168/* FSTS_REG */
169#define DMA_FSTS_PPF ((u32)2)
170#define DMA_FSTS_PFO ((u32)1)
171#define dma_fsts_fault_record_index(s) (((s) >> 8) & 0xff)
172
173/* FRCD_REG, 32 bits access */
174#define DMA_FRCD_F (((u32)1) << 31)
175#define dma_frcd_type(d) ((d >> 30) & 1)
176#define dma_frcd_fault_reason(c) (c & 0xff)
177#define dma_frcd_source_id(c) (c & 0xffff)
178#define dma_frcd_page_addr(d) (d & (((u64)-1) << 12)) /* low 64 bit */
179
ba395927
KA
180struct intel_iommu {
181 void __iomem *reg; /* Pointer to hardware regs, virtual addr */
182 u64 cap;
183 u64 ecap;
ba395927
KA
184 int seg;
185 u32 gcmd; /* Holds TE, EAFL. Don't need SRTP, SFL, WBF */
ba395927 186 spinlock_t register_lock; /* protect register handling */
c42d9f32 187 int seq_id; /* sequence id of the iommu */
e61d98d8
SS
188
189#ifdef CONFIG_DMAR
190 unsigned long *domain_ids; /* bitmap of domains */
191 struct dmar_domain **domains; /* ptr to domains */
192 spinlock_t lock; /* protect context, domain ids */
ba395927
KA
193 struct root_entry *root_entry; /* virtual address */
194
195 unsigned int irq;
196 unsigned char name[7]; /* Device Name */
197 struct msi_msg saved_msg;
198 struct sys_device sysdev;
e61d98d8 199#endif
ba395927
KA
200};
201
e61d98d8
SS
202extern struct dmar_drhd_unit * dmar_find_matched_drhd_unit(struct pci_dev *dev);
203
1886e8a9 204extern int alloc_iommu(struct dmar_drhd_unit *drhd);
e61d98d8 205extern void free_iommu(struct intel_iommu *iommu);
e820482c 206
ba395927 207#endif