x64, x2apic/intr-remap: code re-structuring, to be used by both DMA and Interrupt...
[linux-2.6-block.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)
117
118
119/* IOTLB_REG */
120#define DMA_TLB_GLOBAL_FLUSH (((u64)1) << 60)
121#define DMA_TLB_DSI_FLUSH (((u64)2) << 60)
122#define DMA_TLB_PSI_FLUSH (((u64)3) << 60)
123#define DMA_TLB_IIRG(type) ((type >> 60) & 7)
124#define DMA_TLB_IAIG(val) (((val) >> 57) & 7)
125#define DMA_TLB_READ_DRAIN (((u64)1) << 49)
126#define DMA_TLB_WRITE_DRAIN (((u64)1) << 48)
127#define DMA_TLB_DID(id) (((u64)((id) & 0xffff)) << 32)
128#define DMA_TLB_IVT (((u64)1) << 63)
129#define DMA_TLB_IH_NONLEAF (((u64)1) << 6)
130#define DMA_TLB_MAX_SIZE (0x3f)
131
f8bab735 132/* PMEN_REG */
133#define DMA_PMEN_EPM (((u32)1)<<31)
134#define DMA_PMEN_PRS (((u32)1)<<0)
135
ba395927
KA
136/* GCMD_REG */
137#define DMA_GCMD_TE (((u32)1) << 31)
138#define DMA_GCMD_SRTP (((u32)1) << 30)
139#define DMA_GCMD_SFL (((u32)1) << 29)
140#define DMA_GCMD_EAFL (((u32)1) << 28)
141#define DMA_GCMD_WBF (((u32)1) << 27)
142
143/* GSTS_REG */
144#define DMA_GSTS_TES (((u32)1) << 31)
145#define DMA_GSTS_RTPS (((u32)1) << 30)
146#define DMA_GSTS_FLS (((u32)1) << 29)
147#define DMA_GSTS_AFLS (((u32)1) << 28)
148#define DMA_GSTS_WBFS (((u32)1) << 27)
149
150/* CCMD_REG */
151#define DMA_CCMD_ICC (((u64)1) << 63)
152#define DMA_CCMD_GLOBAL_INVL (((u64)1) << 61)
153#define DMA_CCMD_DOMAIN_INVL (((u64)2) << 61)
154#define DMA_CCMD_DEVICE_INVL (((u64)3) << 61)
155#define DMA_CCMD_FM(m) (((u64)((m) & 0x3)) << 32)
156#define DMA_CCMD_MASK_NOBIT 0
157#define DMA_CCMD_MASK_1BIT 1
158#define DMA_CCMD_MASK_2BIT 2
159#define DMA_CCMD_MASK_3BIT 3
160#define DMA_CCMD_SID(s) (((u64)((s) & 0xffff)) << 16)
161#define DMA_CCMD_DID(d) ((u64)((d) & 0xffff))
162
163/* FECTL_REG */
164#define DMA_FECTL_IM (((u32)1) << 31)
165
166/* FSTS_REG */
167#define DMA_FSTS_PPF ((u32)2)
168#define DMA_FSTS_PFO ((u32)1)
169#define dma_fsts_fault_record_index(s) (((s) >> 8) & 0xff)
170
171/* FRCD_REG, 32 bits access */
172#define DMA_FRCD_F (((u32)1) << 31)
173#define dma_frcd_type(d) ((d >> 30) & 1)
174#define dma_frcd_fault_reason(c) (c & 0xff)
175#define dma_frcd_source_id(c) (c & 0xffff)
176#define dma_frcd_page_addr(d) (d & (((u64)-1) << 12)) /* low 64 bit */
177
ba395927
KA
178struct intel_iommu {
179 void __iomem *reg; /* Pointer to hardware regs, virtual addr */
180 u64 cap;
181 u64 ecap;
ba395927
KA
182 int seg;
183 u32 gcmd; /* Holds TE, EAFL. Don't need SRTP, SFL, WBF */
ba395927 184 spinlock_t register_lock; /* protect register handling */
c42d9f32 185 int seq_id; /* sequence id of the iommu */
e61d98d8
SS
186
187#ifdef CONFIG_DMAR
188 unsigned long *domain_ids; /* bitmap of domains */
189 struct dmar_domain **domains; /* ptr to domains */
190 spinlock_t lock; /* protect context, domain ids */
ba395927
KA
191 struct root_entry *root_entry; /* virtual address */
192
193 unsigned int irq;
194 unsigned char name[7]; /* Device Name */
195 struct msi_msg saved_msg;
196 struct sys_device sysdev;
e61d98d8 197#endif
ba395927
KA
198};
199
e61d98d8
SS
200extern struct dmar_drhd_unit * dmar_find_matched_drhd_unit(struct pci_dev *dev);
201
1886e8a9 202extern int alloc_iommu(struct dmar_drhd_unit *drhd);
e61d98d8 203extern void free_iommu(struct intel_iommu *iommu);
e820482c 204
ba395927 205#endif