dma.h 4.7 KB
Newer Older
1
/*
2
 * Copyright(c) 2004 - 2009 Intel Corporation. All rights reserved.
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by the Free
 * Software Foundation; either version 2 of the License, or (at your option)
 * any later version.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 *
 * You should have received a copy of the GNU General Public License along with
 * this program; if not, write to the Free Software Foundation, Inc., 59
 * Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 *
 * The full GNU General Public License is included in this distribution in the
 * file called COPYING.
 */
#ifndef IOATDMA_H
#define IOATDMA_H

#include <linux/dmaengine.h>
D
Dan Williams 已提交
25
#include "hw.h"
26 27 28
#include <linux/init.h>
#include <linux/dmapool.h>
#include <linux/cache.h>
29
#include <linux/pci_ids.h>
30
#include <net/tcp.h>
31

32
#define IOAT_DMA_VERSION  "3.64"
33

34
#define IOAT_LOW_COMPLETION_MASK	0xffffffc0
35
#define IOAT_DMA_DCA_ANY_CPU		~0
36
#define IOAT_WATCHDOG_PERIOD		(2 * HZ)
37

D
Dan Williams 已提交
38 39 40
#define to_ioat_chan(chan) container_of(chan, struct ioat_dma_chan, common)
#define to_ioatdma_device(dev) container_of(dev, struct ioatdma_device, common)
#define to_ioat_desc(lh) container_of(lh, struct ioat_desc_sw, node)
41 42
#define tx_to_ioat_desc(tx) container_of(tx, struct ioat_desc_sw, txd)
#define to_dev(ioat_chan) (&(ioat_chan)->device->pdev->dev)
D
Dan Williams 已提交
43 44 45 46 47 48 49 50 51 52 53 54

#define chan_num(ch) ((int)((ch)->reg_base - (ch)->device->reg_base) / 0x80)

#define RESET_DELAY  msecs_to_jiffies(100)
#define WATCHDOG_DELAY  round_jiffies(msecs_to_jiffies(2000))

/*
 * workaround for IOAT ver.3.0 null descriptor issue
 * (channel returns error when size is 0)
 */
#define NULL_DESC_BUFFER_SIZE 1

55
/**
56
 * struct ioatdma_device - internal representation of a IOAT device
57 58 59 60
 * @pdev: PCI-Express device
 * @reg_base: MMIO register space base address
 * @dma_pool: for allocating DMA descriptors
 * @common: embedded struct dma_device
61
 * @version: version of ioatdma device
62 63
 * @msix_entries: irq handlers
 * @idx: per channel data
64 65
 * @dca: direct cache access context
 * @intr_quirk: interrupt setup quirk (for ioat_v1 devices)
66 67
 */

68
struct ioatdma_device {
69
	struct pci_dev *pdev;
A
Al Viro 已提交
70
	void __iomem *reg_base;
71 72 73
	struct pci_pool *dma_pool;
	struct pci_pool *completion_pool;
	struct dma_device common;
74
	u8 version;
75
	struct delayed_work work;
76 77
	struct msix_entry msix_entries[4];
	struct ioat_dma_chan *idx[4];
78 79
	struct dca_provider *dca;
	void (*intr_quirk)(struct ioatdma_device *device);
80 81 82 83 84 85 86
};

/**
 * struct ioat_dma_chan - internal representation of a DMA channel
 */
struct ioat_dma_chan {

A
Al Viro 已提交
87
	void __iomem *reg_base;
88 89 90

	dma_cookie_t completed_cookie;
	unsigned long last_completion;
91
	unsigned long last_completion_time;
92

S
Shannon Nelson 已提交
93
	size_t xfercap;	/* XFERCAP register value expanded out */
94 95 96 97 98

	spinlock_t cleanup_lock;
	spinlock_t desc_lock;
	struct list_head free_desc;
	struct list_head used_desc;
99 100 101 102
	unsigned long watchdog_completion;
	int watchdog_tcp_cookie;
	u32 watchdog_last_tcp_cookie;
	struct delayed_work work;
103 104

	int pending;
105 106
	u16 dmacount;
	u16 desccount;
107

108
	struct ioatdma_device *device;
109 110 111 112 113 114 115 116 117 118
	struct dma_chan common;

	dma_addr_t completion_addr;
	union {
		u64 full; /* HW completion writeback */
		struct {
			u32 low;
			u32 high;
		};
	} *completion_virt;
119
	unsigned long last_compl_desc_addr_hw;
120
	struct tasklet_struct cleanup_task;
121 122 123 124 125 126 127
};

/* wrapper around hardware descriptor format + additional software fields */

/**
 * struct ioat_desc_sw - wrapper around hardware descriptor
 * @hw: hardware DMA descriptor
128 129 130
 * @node: this descriptor will either be on the free list,
 *     or attached to a transaction list (async_tx.tx_list)
 * @tx_cnt: number of descriptors required to complete the transaction
131
 * @txd: the generic software descriptor for all engines
132 133 134 135
 */
struct ioat_desc_sw {
	struct ioat_dma_descriptor *hw;
	struct list_head node;
136
	int tx_cnt;
137 138 139
	size_t len;
	dma_addr_t src;
	dma_addr_t dst;
140
	struct dma_async_tx_descriptor txd;
141 142
};

143
static inline void ioat_set_tcp_copy_break(unsigned long copybreak)
144 145
{
	#ifdef CONFIG_NET_DMA
146
	sysctl_tcp_dma_copybreak = copybreak;
147 148 149
	#endif
}

150 151 152
int ioat1_dma_probe(struct ioatdma_device *dev, int dca);
int ioat2_dma_probe(struct ioatdma_device *dev, int dca);
int ioat3_dma_probe(struct ioatdma_device *dev, int dca);
153
void ioat_dma_remove(struct ioatdma_device *device);
154 155
struct dca_provider *ioat_dca_init(struct pci_dev *pdev, void __iomem *iobase);
struct dca_provider *ioat2_dca_init(struct pci_dev *pdev, void __iomem *iobase);
156
struct dca_provider *ioat3_dca_init(struct pci_dev *pdev, void __iomem *iobase);
157
#endif /* IOATDMA_H */