blob: ae41c31c6ea5a7773ce44f8cdb8e3b12d106bd48 [file] [log] [blame]
Saeed Bisharaff7b0472008-07-08 11:58:36 -07001/*
2 * Copyright (C) 2007, 2008, Marvell International Ltd.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it 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
11 * for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software Foundation,
15 * Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
16 */
17
18#ifndef MV_XOR_H
19#define MV_XOR_H
20
21#include <linux/types.h>
22#include <linux/io.h>
23#include <linux/dmaengine.h>
24#include <linux/interrupt.h>
25
26#define USE_TIMER
Thomas Petazzonib503fa02012-11-15 15:55:30 +010027#define MV_XOR_POOL_SIZE PAGE_SIZE
Saeed Bisharaff7b0472008-07-08 11:58:36 -070028#define MV_XOR_SLOT_SIZE 64
29#define MV_XOR_THRESHOLD 1
Thomas Petazzoni60d151f2012-10-29 16:54:49 +010030#define MV_XOR_MAX_CHANNELS 2
Saeed Bisharaff7b0472008-07-08 11:58:36 -070031
Thomas Petazzonie03bc652013-07-29 17:42:14 +020032/* Values for the XOR_CONFIG register */
Saeed Bisharaff7b0472008-07-08 11:58:36 -070033#define XOR_OPERATION_MODE_XOR 0
34#define XOR_OPERATION_MODE_MEMCPY 2
Thomas Petazzonie03bc652013-07-29 17:42:14 +020035#define XOR_DESCRIPTOR_SWAP BIT(14)
Saeed Bisharaff7b0472008-07-08 11:58:36 -070036
Ezequiel Garcia0e7488e2014-08-27 10:52:52 -030037#define XOR_DESC_DMA_OWNED BIT(31)
38#define XOR_DESC_EOD_INT_EN BIT(31)
39
Ezequiel Garcia82a14022013-10-30 12:01:43 -030040#define XOR_CURR_DESC(chan) (chan->mmr_high_base + 0x10 + (chan->idx * 4))
41#define XOR_NEXT_DESC(chan) (chan->mmr_high_base + 0x00 + (chan->idx * 4))
42#define XOR_BYTE_COUNT(chan) (chan->mmr_high_base + 0x20 + (chan->idx * 4))
43#define XOR_DEST_POINTER(chan) (chan->mmr_high_base + 0xB0 + (chan->idx * 4))
44#define XOR_BLOCK_SIZE(chan) (chan->mmr_high_base + 0xC0 + (chan->idx * 4))
45#define XOR_INIT_VALUE_LOW(chan) (chan->mmr_high_base + 0xE0)
46#define XOR_INIT_VALUE_HIGH(chan) (chan->mmr_high_base + 0xE4)
Saeed Bisharaff7b0472008-07-08 11:58:36 -070047
48#define XOR_CONFIG(chan) (chan->mmr_base + 0x10 + (chan->idx * 4))
49#define XOR_ACTIVATION(chan) (chan->mmr_base + 0x20 + (chan->idx * 4))
50#define XOR_INTR_CAUSE(chan) (chan->mmr_base + 0x30)
51#define XOR_INTR_MASK(chan) (chan->mmr_base + 0x40)
52#define XOR_ERROR_CAUSE(chan) (chan->mmr_base + 0x50)
53#define XOR_ERROR_ADDR(chan) (chan->mmr_base + 0x60)
Ezequiel Garcia0e7488e2014-08-27 10:52:52 -030054
55#define XOR_INT_END_OF_DESC BIT(0)
56#define XOR_INT_END_OF_CHAIN BIT(1)
57#define XOR_INT_STOPPED BIT(2)
58#define XOR_INT_PAUSED BIT(3)
59#define XOR_INT_ERR_DECODE BIT(4)
60#define XOR_INT_ERR_RDPROT BIT(5)
61#define XOR_INT_ERR_WRPROT BIT(6)
62#define XOR_INT_ERR_OWN BIT(7)
63#define XOR_INT_ERR_PAR BIT(8)
64#define XOR_INT_ERR_MBUS BIT(9)
65
66#define XOR_INTR_ERRORS (XOR_INT_ERR_DECODE | XOR_INT_ERR_RDPROT | \
67 XOR_INT_ERR_WRPROT | XOR_INT_ERR_OWN | \
68 XOR_INT_ERR_PAR | XOR_INT_ERR_MBUS)
69
70#define XOR_INTR_MASK_VALUE (XOR_INT_END_OF_DESC | \
71 XOR_INT_STOPPED | XOR_INTR_ERRORS)
Saeed Bisharaff7b0472008-07-08 11:58:36 -070072
Ezequiel Garcia82a14022013-10-30 12:01:43 -030073#define WINDOW_BASE(w) (0x50 + ((w) << 2))
74#define WINDOW_SIZE(w) (0x70 + ((w) << 2))
75#define WINDOW_REMAP_HIGH(w) (0x90 + ((w) << 2))
76#define WINDOW_BAR_ENABLE(chan) (0x40 + ((chan) << 2))
77#define WINDOW_OVERRIDE_CTRL(chan) (0xA0 + ((chan) << 2))
Saeed Bisharaff7b0472008-07-08 11:58:36 -070078
Thomas Petazzoni297eedb2012-11-15 15:29:53 +010079struct mv_xor_device {
Thomas Petazzoni60d151f2012-10-29 16:54:49 +010080 void __iomem *xor_base;
81 void __iomem *xor_high_base;
82 struct clk *clk;
Thomas Petazzoni1ef48a22012-11-15 15:17:05 +010083 struct mv_xor_chan *channels[MV_XOR_MAX_CHANNELS];
Saeed Bisharaff7b0472008-07-08 11:58:36 -070084};
85
86/**
87 * struct mv_xor_chan - internal representation of a XOR channel
88 * @pending: allows batching of hardware operations
Saeed Bisharaff7b0472008-07-08 11:58:36 -070089 * @lock: serializes enqueue/dequeue operations to the descriptors pool
90 * @mmr_base: memory mapped register base
91 * @idx: the index of the xor channel
92 * @chain: device chain view of the descriptors
93 * @completed_slots: slots completed by HW but still need to be acked
94 * @device: parent device
95 * @common: common dmaengine channel object members
96 * @last_used: place holder for allocation to continue from where it left off
97 * @all_slots: complete domain of slots usable by the channel
98 * @slots_allocated: records the actual size of the descriptor slot pool
99 * @irq_tasklet: bottom half where mv_xor_slot_cleanup runs
100 */
101struct mv_xor_chan {
102 int pending;
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700103 spinlock_t lock; /* protects the descriptor slot pool */
104 void __iomem *mmr_base;
Ezequiel Garcia82a14022013-10-30 12:01:43 -0300105 void __iomem *mmr_high_base;
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700106 unsigned int idx;
Thomas Petazzoni88eb92c2012-11-15 16:11:18 +0100107 int irq;
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700108 enum dma_transaction_type current_type;
109 struct list_head chain;
110 struct list_head completed_slots;
Thomas Petazzoni1ef48a22012-11-15 15:17:05 +0100111 dma_addr_t dma_desc_pool;
112 void *dma_desc_pool_virt;
113 size_t pool_size;
114 struct dma_device dmadev;
Thomas Petazzoni98817b92012-11-15 14:57:44 +0100115 struct dma_chan dmachan;
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700116 struct mv_xor_desc_slot *last_used;
117 struct list_head all_slots;
118 int slots_allocated;
119 struct tasklet_struct irq_tasklet;
120#ifdef USE_TIMER
121 unsigned long cleanup_time;
122 u32 current_on_last_cleanup;
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700123#endif
124};
125
126/**
127 * struct mv_xor_desc_slot - software descriptor
128 * @slot_node: node on the mv_xor_chan.all_slots list
129 * @chain_node: node on the mv_xor_chan.chain list
130 * @completed_node: node on the mv_xor_chan.completed_slots list
131 * @hw_desc: virtual address of the hardware descriptor chain
132 * @phys: hardware address of the hardware descriptor chain
Lior Amsalemdfc97662014-08-27 10:52:51 -0300133 * @slot_used: slot in use or not
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700134 * @idx: pool index
135 * @unmap_src_cnt: number of xor sources
136 * @unmap_len: transaction bytecount
Dan Williams64203b62009-09-08 17:53:03 -0700137 * @tx_list: list of slots that make up a multi-descriptor transaction
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700138 * @async_tx: support for the async_tx api
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700139 * @xor_check_result: result of zero sum
140 * @crc32_result: result crc calculation
141 */
142struct mv_xor_desc_slot {
143 struct list_head slot_node;
144 struct list_head chain_node;
145 struct list_head completed_node;
146 enum dma_transaction_type type;
147 void *hw_desc;
Lior Amsalemdfc97662014-08-27 10:52:51 -0300148 u16 slot_used;
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700149 u16 idx;
150 u16 unmap_src_cnt;
151 u32 value;
152 size_t unmap_len;
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700153 struct dma_async_tx_descriptor async_tx;
154 union {
155 u32 *xor_check_result;
156 u32 *crc32_result;
157 };
158#ifdef USE_TIMER
159 unsigned long arrival_time;
160 struct timer_list timeout;
161#endif
162};
163
Thomas Petazzonie03bc652013-07-29 17:42:14 +0200164/*
165 * This structure describes XOR descriptor size 64bytes. The
166 * mv_phy_src_idx() macro must be used when indexing the values of the
167 * phy_src_addr[] array. This is due to the fact that the 'descriptor
168 * swap' feature, used on big endian systems, swaps descriptors data
169 * within blocks of 8 bytes. So two consecutive values of the
170 * phy_src_addr[] array are actually swapped in big-endian, which
171 * explains the different mv_phy_src_idx() implementation.
172 */
173#if defined(__LITTLE_ENDIAN)
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700174struct mv_xor_desc {
175 u32 status; /* descriptor execution status */
176 u32 crc32_result; /* result of CRC-32 calculation */
177 u32 desc_command; /* type of operation to be carried out */
178 u32 phy_next_desc; /* next descriptor address pointer */
179 u32 byte_count; /* size of src/dst blocks in bytes */
180 u32 phy_dest_addr; /* destination block address */
181 u32 phy_src_addr[8]; /* source block addresses */
182 u32 reserved0;
183 u32 reserved1;
184};
Thomas Petazzonie03bc652013-07-29 17:42:14 +0200185#define mv_phy_src_idx(src_idx) (src_idx)
186#else
187struct mv_xor_desc {
188 u32 crc32_result; /* result of CRC-32 calculation */
189 u32 status; /* descriptor execution status */
190 u32 phy_next_desc; /* next descriptor address pointer */
191 u32 desc_command; /* type of operation to be carried out */
192 u32 phy_dest_addr; /* destination block address */
193 u32 byte_count; /* size of src/dst blocks in bytes */
194 u32 phy_src_addr[8]; /* source block addresses */
195 u32 reserved1;
196 u32 reserved0;
197};
198#define mv_phy_src_idx(src_idx) (src_idx ^ 1)
199#endif
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700200
201#define to_mv_sw_desc(addr_hw_desc) \
202 container_of(addr_hw_desc, struct mv_xor_desc_slot, hw_desc)
203
204#define mv_hw_desc_slot_idx(hw_desc, idx) \
205 ((void *)(((unsigned long)hw_desc) + ((idx) << 5)))
206
207#define MV_XOR_MIN_BYTE_COUNT (128)
208#define XOR_MAX_BYTE_COUNT ((16 * 1024 * 1024) - 1)
209#define MV_XOR_MAX_BYTE_COUNT XOR_MAX_BYTE_COUNT
210
211
212#endif