2006-05-24 08:35:34 +08:00
|
|
|
/*
|
2009-02-26 18:05:43 +08:00
|
|
|
* Copyright(c) 2004 - 2009 Intel Corporation. All rights reserved.
|
2006-05-24 08:35:34 +08:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* 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>
|
2009-07-29 05:32:12 +08:00
|
|
|
#include "hw.h"
|
2009-09-09 03:01:49 +08:00
|
|
|
#include "registers.h"
|
2006-05-24 08:35:34 +08:00
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/dmapool.h>
|
|
|
|
#include <linux/cache.h>
|
2006-05-24 08:39:49 +08:00
|
|
|
#include <linux/pci_ids.h>
|
2008-07-23 08:30:57 +08:00
|
|
|
#include <net/tcp.h>
|
2006-05-24 08:35:34 +08:00
|
|
|
|
2009-09-11 02:27:36 +08:00
|
|
|
#define IOAT_DMA_VERSION "4.00"
|
2007-10-18 18:07:13 +08:00
|
|
|
|
2007-11-15 08:59:51 +08:00
|
|
|
#define IOAT_DMA_DCA_ANY_CPU ~0
|
|
|
|
|
2015-08-11 23:48:27 +08:00
|
|
|
#define to_ioatdma_device(dev) container_of(dev, struct ioatdma_device, dma_dev)
|
|
|
|
#define to_dev(ioat_chan) (&(ioat_chan)->ioat_dma->pdev->dev)
|
|
|
|
#define to_pdev(ioat_chan) ((ioat_chan)->ioat_dma->pdev)
|
2009-09-09 08:29:02 +08:00
|
|
|
|
2015-08-11 23:48:27 +08:00
|
|
|
#define chan_num(ch) ((int)((ch)->reg_base - (ch)->ioat_dma->reg_base) / 0x80)
|
2009-09-09 08:29:02 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* workaround for IOAT ver.3.0 null descriptor issue
|
|
|
|
* (channel returns error when size is 0)
|
|
|
|
*/
|
|
|
|
#define NULL_DESC_BUFFER_SIZE 1
|
|
|
|
|
2013-03-27 06:42:47 +08:00
|
|
|
enum ioat_irq_mode {
|
|
|
|
IOAT_NOIRQ = 0,
|
|
|
|
IOAT_MSIX,
|
|
|
|
IOAT_MSI,
|
|
|
|
IOAT_INTX
|
|
|
|
};
|
|
|
|
|
2006-05-24 08:35:34 +08:00
|
|
|
/**
|
2007-10-16 16:27:39 +08:00
|
|
|
* struct ioatdma_device - internal representation of a IOAT device
|
2006-05-24 08:35:34 +08:00
|
|
|
* @pdev: PCI-Express device
|
|
|
|
* @reg_base: MMIO register space base address
|
|
|
|
* @dma_pool: for allocating DMA descriptors
|
2015-08-11 23:48:27 +08:00
|
|
|
* @dma_dev: embedded struct dma_device
|
2007-10-16 16:27:39 +08:00
|
|
|
* @version: version of ioatdma device
|
2007-11-15 08:59:51 +08:00
|
|
|
* @msix_entries: irq handlers
|
|
|
|
* @idx: per channel data
|
2009-07-29 05:42:38 +08:00
|
|
|
* @dca: direct cache access context
|
|
|
|
* @intr_quirk: interrupt setup quirk (for ioat_v1 devices)
|
2009-08-27 04:01:44 +08:00
|
|
|
* @enumerate_channels: hw version specific channel enumeration
|
2009-12-20 06:36:02 +08:00
|
|
|
* @reset_hw: hw version specific channel (re)initialization
|
2010-03-04 12:21:13 +08:00
|
|
|
* @cleanup_fn: select between the v2 and v3 cleanup routines
|
2009-09-09 08:42:55 +08:00
|
|
|
* @timer_fn: select between the v2 and v3 timer watchdog routines
|
2009-09-09 08:42:58 +08:00
|
|
|
* @self_test: hardware version specific self test for each supported op type
|
2009-09-09 08:42:55 +08:00
|
|
|
*
|
|
|
|
* Note: the v3 cleanup routine supports raid operations
|
2006-05-24 08:35:34 +08:00
|
|
|
*/
|
2007-10-16 16:27:39 +08:00
|
|
|
struct ioatdma_device {
|
2006-05-24 08:35:34 +08:00
|
|
|
struct pci_dev *pdev;
|
2006-10-11 05:45:47 +08:00
|
|
|
void __iomem *reg_base;
|
2006-05-24 08:35:34 +08:00
|
|
|
struct pci_pool *dma_pool;
|
|
|
|
struct pci_pool *completion_pool;
|
2013-04-16 01:25:56 +08:00
|
|
|
#define MAX_SED_POOLS 5
|
|
|
|
struct dma_pool *sed_hw_pool[MAX_SED_POOLS];
|
2015-08-11 23:48:27 +08:00
|
|
|
struct dma_device dma_dev;
|
2007-10-16 16:27:39 +08:00
|
|
|
u8 version;
|
2007-10-16 16:27:40 +08:00
|
|
|
struct msix_entry msix_entries[4];
|
2015-08-11 23:48:21 +08:00
|
|
|
struct ioatdma_chan *idx[4];
|
2009-07-29 05:42:38 +08:00
|
|
|
struct dca_provider *dca;
|
2013-03-27 06:42:47 +08:00
|
|
|
enum ioat_irq_mode irq_mode;
|
2013-04-11 07:44:39 +08:00
|
|
|
u32 cap;
|
2015-08-11 23:48:27 +08:00
|
|
|
void (*intr_quirk)(struct ioatdma_device *ioat_dma);
|
|
|
|
int (*enumerate_channels)(struct ioatdma_device *ioat_dma);
|
2015-08-11 23:48:21 +08:00
|
|
|
int (*reset_hw)(struct ioatdma_chan *ioat_chan);
|
2010-03-04 12:21:13 +08:00
|
|
|
void (*cleanup_fn)(unsigned long data);
|
2009-09-09 08:42:55 +08:00
|
|
|
void (*timer_fn)(unsigned long data);
|
2015-08-11 23:48:27 +08:00
|
|
|
int (*self_test)(struct ioatdma_device *ioat_dma);
|
2006-05-24 08:35:34 +08:00
|
|
|
};
|
|
|
|
|
2015-08-11 23:48:21 +08:00
|
|
|
struct ioatdma_chan {
|
|
|
|
struct dma_chan dma_chan;
|
2006-10-11 05:45:47 +08:00
|
|
|
void __iomem *reg_base;
|
2012-03-24 04:36:42 +08:00
|
|
|
dma_addr_t last_completion;
|
2006-05-24 08:35:34 +08:00
|
|
|
spinlock_t cleanup_lock;
|
2009-09-09 03:01:49 +08:00
|
|
|
unsigned long state;
|
|
|
|
#define IOAT_COMPLETION_PENDING 0
|
|
|
|
#define IOAT_COMPLETION_ACK 1
|
|
|
|
#define IOAT_RESET_PENDING 2
|
2009-09-09 08:42:56 +08:00
|
|
|
#define IOAT_KOBJ_INIT_FAIL 3
|
2010-05-02 06:22:55 +08:00
|
|
|
#define IOAT_RESHAPE_PENDING 4
|
2010-07-24 06:47:56 +08:00
|
|
|
#define IOAT_RUN 5
|
2013-02-08 05:38:32 +08:00
|
|
|
#define IOAT_CHAN_ACTIVE 6
|
2009-09-09 03:01:49 +08:00
|
|
|
struct timer_list timer;
|
|
|
|
#define COMPLETION_TIMEOUT msecs_to_jiffies(100)
|
2009-09-09 03:02:01 +08:00
|
|
|
#define IDLE_TIMEOUT msecs_to_jiffies(2000)
|
2009-09-09 03:01:49 +08:00
|
|
|
#define RESET_DELAY msecs_to_jiffies(100)
|
2015-08-11 23:48:27 +08:00
|
|
|
struct ioatdma_device *ioat_dma;
|
2009-09-09 03:01:04 +08:00
|
|
|
dma_addr_t completion_dma;
|
|
|
|
u64 *completion;
|
2007-10-16 16:27:40 +08:00
|
|
|
struct tasklet_struct cleanup_task;
|
2009-09-09 08:42:56 +08:00
|
|
|
struct kobject kobj;
|
2015-08-11 23:48:21 +08:00
|
|
|
|
|
|
|
/* ioat v2 / v3 channel attributes
|
|
|
|
* @xfercap_log; log2 of channel max transfer length (for fast division)
|
|
|
|
* @head: allocated index
|
|
|
|
* @issued: hardware notification point
|
|
|
|
* @tail: cleanup index
|
|
|
|
* @dmacount: identical to 'head' except for occasionally resetting to zero
|
|
|
|
* @alloc_order: log2 of the number of allocated descriptors
|
|
|
|
* @produce: number of descriptors to produce at submit time
|
|
|
|
* @ring: software ring buffer implementation of hardware ring
|
|
|
|
* @prep_lock: serializes descriptor preparation (producers)
|
|
|
|
*/
|
|
|
|
size_t xfercap_log;
|
|
|
|
u16 head;
|
|
|
|
u16 issued;
|
|
|
|
u16 tail;
|
|
|
|
u16 dmacount;
|
|
|
|
u16 alloc_order;
|
|
|
|
u16 produce;
|
|
|
|
struct ioat_ring_ent **ring;
|
|
|
|
spinlock_t prep_lock;
|
2006-05-24 08:35:34 +08:00
|
|
|
};
|
|
|
|
|
2009-09-09 08:42:56 +08:00
|
|
|
struct ioat_sysfs_entry {
|
|
|
|
struct attribute attr;
|
|
|
|
ssize_t (*show)(struct dma_chan *, char *);
|
|
|
|
};
|
2009-08-27 04:01:44 +08:00
|
|
|
|
2013-04-16 01:25:56 +08:00
|
|
|
/**
|
|
|
|
* struct ioat_sed_ent - wrapper around super extended hardware descriptor
|
|
|
|
* @hw: hardware SED
|
|
|
|
* @sed_dma: dma address for the SED
|
|
|
|
* @list: list member
|
|
|
|
* @parent: point to the dma descriptor that's the parent
|
|
|
|
*/
|
|
|
|
struct ioat_sed_ent {
|
|
|
|
struct ioat_sed_raw_descriptor *hw;
|
|
|
|
dma_addr_t dma;
|
|
|
|
struct ioat_ring_ent *parent;
|
|
|
|
unsigned int hw_pool;
|
|
|
|
};
|
|
|
|
|
2015-08-11 23:48:21 +08:00
|
|
|
static inline struct ioatdma_chan *to_ioat_chan(struct dma_chan *c)
|
2009-07-29 05:44:50 +08:00
|
|
|
{
|
2015-08-11 23:48:21 +08:00
|
|
|
return container_of(c, struct ioatdma_chan, dma_chan);
|
2009-07-29 05:44:50 +08:00
|
|
|
}
|
|
|
|
|
2015-08-11 23:48:21 +08:00
|
|
|
|
|
|
|
|
2006-05-24 08:35:34 +08:00
|
|
|
/* wrapper around hardware descriptor format + additional software fields */
|
|
|
|
|
2009-09-09 03:00:55 +08:00
|
|
|
#ifdef DEBUG
|
|
|
|
#define set_desc_id(desc, i) ((desc)->id = (i))
|
|
|
|
#define desc_id(desc) ((desc)->id)
|
|
|
|
#else
|
|
|
|
#define set_desc_id(desc, i)
|
|
|
|
#define desc_id(desc) (0)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static inline void
|
2015-08-11 23:48:21 +08:00
|
|
|
__dump_desc_dbg(struct ioatdma_chan *ioat_chan, struct ioat_dma_descriptor *hw,
|
2009-09-09 03:00:55 +08:00
|
|
|
struct dma_async_tx_descriptor *tx, int id)
|
|
|
|
{
|
2015-08-11 23:48:21 +08:00
|
|
|
struct device *dev = to_dev(ioat_chan);
|
2009-09-09 03:00:55 +08:00
|
|
|
|
|
|
|
dev_dbg(dev, "desc[%d]: (%#llx->%#llx) cookie: %d flags: %#x"
|
2013-03-05 01:59:54 +08:00
|
|
|
" ctl: %#10.8x (op: %#x int_en: %d compl: %d)\n", id,
|
2009-09-09 03:00:55 +08:00
|
|
|
(unsigned long long) tx->phys,
|
|
|
|
(unsigned long long) hw->next, tx->cookie, tx->flags,
|
|
|
|
hw->ctl, hw->ctl_f.op, hw->ctl_f.int_en, hw->ctl_f.compl_write);
|
|
|
|
}
|
|
|
|
|
|
|
|
#define dump_desc_dbg(c, d) \
|
2015-08-11 23:48:21 +08:00
|
|
|
({ if (d) __dump_desc_dbg(c, d->hw, &d->txd, desc_id(d)); 0; })
|
2009-09-09 03:00:55 +08:00
|
|
|
|
2015-08-11 23:48:21 +08:00
|
|
|
static inline struct ioatdma_chan *
|
2015-08-11 23:48:27 +08:00
|
|
|
ioat_chan_by_index(struct ioatdma_device *ioat_dma, int index)
|
2009-08-27 04:01:44 +08:00
|
|
|
{
|
2015-08-11 23:48:27 +08:00
|
|
|
return ioat_dma->idx[index];
|
2009-08-27 04:01:44 +08:00
|
|
|
}
|
|
|
|
|
2015-08-11 23:48:21 +08:00
|
|
|
static inline u64 ioat_chansts_32(struct ioatdma_chan *ioat_chan)
|
2009-09-09 03:01:49 +08:00
|
|
|
{
|
2015-08-11 23:48:27 +08:00
|
|
|
u8 ver = ioat_chan->ioat_dma->version;
|
2009-09-09 03:01:49 +08:00
|
|
|
u64 status;
|
|
|
|
u32 status_lo;
|
|
|
|
|
|
|
|
/* We need to read the low address first as this causes the
|
|
|
|
* chipset to latch the upper bits for the subsequent read
|
|
|
|
*/
|
2015-08-11 23:48:21 +08:00
|
|
|
status_lo = readl(ioat_chan->reg_base + IOAT_CHANSTS_OFFSET_LOW(ver));
|
|
|
|
status = readl(ioat_chan->reg_base + IOAT_CHANSTS_OFFSET_HIGH(ver));
|
2009-09-09 03:01:49 +08:00
|
|
|
status <<= 32;
|
|
|
|
status |= status_lo;
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2013-03-27 06:42:41 +08:00
|
|
|
#if BITS_PER_LONG == 64
|
|
|
|
|
2015-08-11 23:48:21 +08:00
|
|
|
static inline u64 ioat_chansts(struct ioatdma_chan *ioat_chan)
|
2013-03-27 06:42:41 +08:00
|
|
|
{
|
2015-08-11 23:48:27 +08:00
|
|
|
u8 ver = ioat_chan->ioat_dma->version;
|
2013-03-27 06:42:41 +08:00
|
|
|
u64 status;
|
|
|
|
|
|
|
|
/* With IOAT v3.3 the status register is 64bit. */
|
|
|
|
if (ver >= IOAT_VER_3_3)
|
2015-08-11 23:48:21 +08:00
|
|
|
status = readq(ioat_chan->reg_base + IOAT_CHANSTS_OFFSET(ver));
|
2013-03-27 06:42:41 +08:00
|
|
|
else
|
2015-08-11 23:48:21 +08:00
|
|
|
status = ioat_chansts_32(ioat_chan);
|
2013-03-27 06:42:41 +08:00
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
#define ioat_chansts ioat_chansts_32
|
|
|
|
#endif
|
|
|
|
|
2009-09-09 03:01:49 +08:00
|
|
|
static inline u64 ioat_chansts_to_addr(u64 status)
|
|
|
|
{
|
|
|
|
return status & IOAT_CHANSTS_COMPLETED_DESCRIPTOR_ADDR;
|
|
|
|
}
|
|
|
|
|
2015-08-11 23:48:21 +08:00
|
|
|
static inline u32 ioat_chanerr(struct ioatdma_chan *ioat_chan)
|
2009-09-09 03:01:49 +08:00
|
|
|
{
|
2015-08-11 23:48:21 +08:00
|
|
|
return readl(ioat_chan->reg_base + IOAT_CHANERR_OFFSET);
|
2009-09-09 03:01:49 +08:00
|
|
|
}
|
|
|
|
|
2015-08-11 23:48:21 +08:00
|
|
|
static inline void ioat_suspend(struct ioatdma_chan *ioat_chan)
|
2009-09-09 03:01:49 +08:00
|
|
|
{
|
2015-08-11 23:48:27 +08:00
|
|
|
u8 ver = ioat_chan->ioat_dma->version;
|
2009-09-09 03:01:49 +08:00
|
|
|
|
2015-08-11 23:48:21 +08:00
|
|
|
writeb(IOAT_CHANCMD_SUSPEND,
|
|
|
|
ioat_chan->reg_base + IOAT_CHANCMD_OFFSET(ver));
|
2009-09-09 03:01:49 +08:00
|
|
|
}
|
|
|
|
|
2015-08-11 23:48:21 +08:00
|
|
|
static inline void ioat_reset(struct ioatdma_chan *ioat_chan)
|
2009-12-20 06:36:02 +08:00
|
|
|
{
|
2015-08-11 23:48:27 +08:00
|
|
|
u8 ver = ioat_chan->ioat_dma->version;
|
2009-12-20 06:36:02 +08:00
|
|
|
|
2015-08-11 23:48:21 +08:00
|
|
|
writeb(IOAT_CHANCMD_RESET,
|
|
|
|
ioat_chan->reg_base + IOAT_CHANCMD_OFFSET(ver));
|
2009-12-20 06:36:02 +08:00
|
|
|
}
|
|
|
|
|
2015-08-11 23:48:21 +08:00
|
|
|
static inline bool ioat_reset_pending(struct ioatdma_chan *ioat_chan)
|
2009-12-20 06:36:02 +08:00
|
|
|
{
|
2015-08-11 23:48:27 +08:00
|
|
|
u8 ver = ioat_chan->ioat_dma->version;
|
2009-12-20 06:36:02 +08:00
|
|
|
u8 cmd;
|
|
|
|
|
2015-08-11 23:48:21 +08:00
|
|
|
cmd = readb(ioat_chan->reg_base + IOAT_CHANCMD_OFFSET(ver));
|
2009-12-20 06:36:02 +08:00
|
|
|
return (cmd & IOAT_CHANCMD_RESET) == IOAT_CHANCMD_RESET;
|
|
|
|
}
|
|
|
|
|
2009-09-09 03:01:49 +08:00
|
|
|
static inline bool is_ioat_active(unsigned long status)
|
|
|
|
{
|
|
|
|
return ((status & IOAT_CHANSTS_STATUS) == IOAT_CHANSTS_ACTIVE);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool is_ioat_idle(unsigned long status)
|
|
|
|
{
|
|
|
|
return ((status & IOAT_CHANSTS_STATUS) == IOAT_CHANSTS_DONE);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool is_ioat_halted(unsigned long status)
|
|
|
|
{
|
|
|
|
return ((status & IOAT_CHANSTS_STATUS) == IOAT_CHANSTS_HALTED);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool is_ioat_suspended(unsigned long status)
|
|
|
|
{
|
|
|
|
return ((status & IOAT_CHANSTS_STATUS) == IOAT_CHANSTS_SUSPENDED);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* channel was fatally programmed */
|
|
|
|
static inline bool is_ioat_bug(unsigned long err)
|
|
|
|
{
|
2009-11-20 08:10:07 +08:00
|
|
|
return !!err;
|
2009-09-09 03:01:49 +08:00
|
|
|
}
|
|
|
|
|
2015-08-11 23:48:27 +08:00
|
|
|
int ioat_probe(struct ioatdma_device *ioat_dma);
|
|
|
|
int ioat_register(struct ioatdma_device *ioat_dma);
|
|
|
|
int ioat_dma_self_test(struct ioatdma_device *ioat_dma);
|
|
|
|
void ioat_dma_remove(struct ioatdma_device *ioat_dma);
|
2012-12-22 07:09:59 +08:00
|
|
|
struct dca_provider *ioat_dca_init(struct pci_dev *pdev, void __iomem *iobase);
|
2015-08-11 23:48:27 +08:00
|
|
|
void ioat_init_channel(struct ioatdma_device *ioat_dma,
|
2015-08-11 23:48:21 +08:00
|
|
|
struct ioatdma_chan *ioat_chan, int idx);
|
2010-03-27 07:50:49 +08:00
|
|
|
enum dma_status ioat_dma_tx_status(struct dma_chan *c, dma_cookie_t cookie,
|
|
|
|
struct dma_tx_state *txstate);
|
2015-08-11 23:48:21 +08:00
|
|
|
bool ioat_cleanup_preamble(struct ioatdma_chan *ioat_chan,
|
2012-03-24 04:36:42 +08:00
|
|
|
dma_addr_t *phys_complete);
|
2015-08-11 23:48:27 +08:00
|
|
|
void ioat_kobject_add(struct ioatdma_device *ioat_dma, struct kobj_type *type);
|
|
|
|
void ioat_kobject_del(struct ioatdma_device *ioat_dma);
|
|
|
|
int ioat_dma_setup_interrupts(struct ioatdma_device *ioat_dma);
|
2015-08-11 23:48:21 +08:00
|
|
|
void ioat_stop(struct ioatdma_chan *ioat_chan);
|
2010-01-19 09:58:23 +08:00
|
|
|
extern const struct sysfs_ops ioat_sysfs_ops;
|
2009-09-09 08:42:56 +08:00
|
|
|
extern struct ioat_sysfs_entry ioat_version_attr;
|
|
|
|
extern struct ioat_sysfs_entry ioat_cap_attr;
|
2006-05-24 08:35:34 +08:00
|
|
|
#endif /* IOATDMA_H */
|