2 * Copyright(c) 2004 - 2009 Intel Corporation. All rights reserved.
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License as published by the Free
6 * Software Foundation; either version 2 of the License, or (at your option)
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc., 59
16 * Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 * The full GNU General Public License is included in this distribution in the
19 * file called COPYING.
24 /* PCI Configuration Space Values */
25 #define IOAT_PCI_VID 0x8086
26 #define IOAT_MMIO_BAR 0
29 #define IOAT_PCI_DID_5000 0x1A38
30 #define IOAT_PCI_DID_CNB 0x360B
31 #define IOAT_PCI_DID_SCNB 0x65FF
32 #define IOAT_PCI_DID_SNB 0x402F
34 #define IOAT_PCI_RID 0x00
35 #define IOAT_PCI_SVID 0x8086
36 #define IOAT_PCI_SID 0x8086
37 #define IOAT_VER_1_2 0x12 /* Version 1.2 */
38 #define IOAT_VER_2_0 0x20 /* Version 2.0 */
39 #define IOAT_VER_3_0 0x30 /* Version 3.0 */
40 #define IOAT_VER_3_2 0x32 /* Version 3.2 */
42 int system_has_dca_enabled(struct pci_dev
*pdev
);
44 struct ioat_dma_descriptor
{
49 unsigned int int_en
:1;
50 unsigned int src_snoop_dis
:1;
51 unsigned int dest_snoop_dis
:1;
52 unsigned int compl_write
:1;
55 unsigned int src_brk
:1;
56 unsigned int dest_brk
:1;
57 unsigned int bundle
:1;
58 unsigned int dest_dca
:1;
60 unsigned int rsvd2
:13;
61 #define IOAT_OP_COPY 0x00
70 /* store some driver data in an unused portion of the descriptor */
78 struct ioat_fill_descriptor
{
83 unsigned int int_en
:1;
85 unsigned int dest_snoop_dis
:1;
86 unsigned int compl_write
:1;
89 unsigned int dest_brk
:1;
90 unsigned int bundle
:1;
91 unsigned int rsvd4
:15;
92 #define IOAT_OP_FILL 0x01
100 uint64_t next_dst_addr
;
105 struct ioat_xor_descriptor
{
110 unsigned int int_en
:1;
111 unsigned int src_snoop_dis
:1;
112 unsigned int dest_snoop_dis
:1;
113 unsigned int compl_write
:1;
114 unsigned int fence
:1;
115 unsigned int src_cnt
:3;
116 unsigned int bundle
:1;
117 unsigned int dest_dca
:1;
119 unsigned int rsvd
:13;
120 #define IOAT_OP_XOR 0x87
121 #define IOAT_OP_XOR_VAL 0x88
134 struct ioat_xor_ext_descriptor
{
142 struct ioat_pq_descriptor
{
147 unsigned int int_en
:1;
148 unsigned int src_snoop_dis
:1;
149 unsigned int dest_snoop_dis
:1;
150 unsigned int compl_write
:1;
151 unsigned int fence
:1;
152 unsigned int src_cnt
:3;
153 unsigned int bundle
:1;
154 unsigned int dest_dca
:1;
156 unsigned int p_disable
:1;
157 unsigned int q_disable
:1;
158 unsigned int rsvd
:11;
159 #define IOAT_OP_PQ 0x89
160 #define IOAT_OP_PQ_VAL 0x8a
173 struct ioat_pq_ext_descriptor
{
183 struct ioat_pq_update_descriptor
{
188 unsigned int int_en
:1;
189 unsigned int src_snoop_dis
:1;
190 unsigned int dest_snoop_dis
:1;
191 unsigned int compl_write
:1;
192 unsigned int fence
:1;
193 unsigned int src_cnt
:3;
194 unsigned int bundle
:1;
195 unsigned int dest_dca
:1;
197 unsigned int p_disable
:1;
198 unsigned int q_disable
:1;
201 #define IOAT_OP_PQ_UP 0x8b
214 struct ioat_raw_descriptor
{