blob: 16de1f62c950e46d15fdce3ab079f0166b4c0f0e [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
27#define MV_XOR_SLOT_SIZE 64
28#define MV_XOR_THRESHOLD 1
Thomas Petazzoni60d151f2012-10-29 16:54:49 +010029#define MV_XOR_MAX_CHANNELS 2
Saeed Bisharaff7b0472008-07-08 11:58:36 -070030
31#define XOR_OPERATION_MODE_XOR 0
32#define XOR_OPERATION_MODE_MEMCPY 2
33#define XOR_OPERATION_MODE_MEMSET 4
34
35#define XOR_CURR_DESC(chan) (chan->mmr_base + 0x210 + (chan->idx * 4))
36#define XOR_NEXT_DESC(chan) (chan->mmr_base + 0x200 + (chan->idx * 4))
37#define XOR_BYTE_COUNT(chan) (chan->mmr_base + 0x220 + (chan->idx * 4))
38#define XOR_DEST_POINTER(chan) (chan->mmr_base + 0x2B0 + (chan->idx * 4))
39#define XOR_BLOCK_SIZE(chan) (chan->mmr_base + 0x2C0 + (chan->idx * 4))
40#define XOR_INIT_VALUE_LOW(chan) (chan->mmr_base + 0x2E0)
41#define XOR_INIT_VALUE_HIGH(chan) (chan->mmr_base + 0x2E4)
42
43#define XOR_CONFIG(chan) (chan->mmr_base + 0x10 + (chan->idx * 4))
44#define XOR_ACTIVATION(chan) (chan->mmr_base + 0x20 + (chan->idx * 4))
45#define XOR_INTR_CAUSE(chan) (chan->mmr_base + 0x30)
46#define XOR_INTR_MASK(chan) (chan->mmr_base + 0x40)
47#define XOR_ERROR_CAUSE(chan) (chan->mmr_base + 0x50)
48#define XOR_ERROR_ADDR(chan) (chan->mmr_base + 0x60)
49#define XOR_INTR_MASK_VALUE 0x3F5
50
51#define WINDOW_BASE(w) (0x250 + ((w) << 2))
52#define WINDOW_SIZE(w) (0x270 + ((w) << 2))
53#define WINDOW_REMAP_HIGH(w) (0x290 + ((w) << 2))
54#define WINDOW_BAR_ENABLE(chan) (0x240 + ((chan) << 2))
55
Thomas Petazzoni61971652012-10-30 12:05:40 +010056struct mv_xor_private {
Thomas Petazzoni60d151f2012-10-29 16:54:49 +010057 void __iomem *xor_base;
58 void __iomem *xor_high_base;
59 struct clk *clk;
Thomas Petazzoni1ef48a22012-11-15 15:17:05 +010060 struct mv_xor_chan *channels[MV_XOR_MAX_CHANNELS];
Saeed Bisharaff7b0472008-07-08 11:58:36 -070061};
62
63/**
64 * struct mv_xor_chan - internal representation of a XOR channel
65 * @pending: allows batching of hardware operations
Saeed Bisharaff7b0472008-07-08 11:58:36 -070066 * @lock: serializes enqueue/dequeue operations to the descriptors pool
67 * @mmr_base: memory mapped register base
68 * @idx: the index of the xor channel
69 * @chain: device chain view of the descriptors
70 * @completed_slots: slots completed by HW but still need to be acked
71 * @device: parent device
72 * @common: common dmaengine channel object members
73 * @last_used: place holder for allocation to continue from where it left off
74 * @all_slots: complete domain of slots usable by the channel
75 * @slots_allocated: records the actual size of the descriptor slot pool
76 * @irq_tasklet: bottom half where mv_xor_slot_cleanup runs
77 */
78struct mv_xor_chan {
79 int pending;
Saeed Bisharaff7b0472008-07-08 11:58:36 -070080 spinlock_t lock; /* protects the descriptor slot pool */
81 void __iomem *mmr_base;
82 unsigned int idx;
83 enum dma_transaction_type current_type;
84 struct list_head chain;
85 struct list_head completed_slots;
Thomas Petazzoni1ef48a22012-11-15 15:17:05 +010086 dma_addr_t dma_desc_pool;
87 void *dma_desc_pool_virt;
88 size_t pool_size;
89 struct dma_device dmadev;
90 struct mv_xor_private *shared;
Thomas Petazzoni98817b92012-11-15 14:57:44 +010091 struct dma_chan dmachan;
Saeed Bisharaff7b0472008-07-08 11:58:36 -070092 struct mv_xor_desc_slot *last_used;
93 struct list_head all_slots;
94 int slots_allocated;
95 struct tasklet_struct irq_tasklet;
96#ifdef USE_TIMER
97 unsigned long cleanup_time;
98 u32 current_on_last_cleanup;
Saeed Bisharaff7b0472008-07-08 11:58:36 -070099#endif
100};
101
102/**
103 * struct mv_xor_desc_slot - software descriptor
104 * @slot_node: node on the mv_xor_chan.all_slots list
105 * @chain_node: node on the mv_xor_chan.chain list
106 * @completed_node: node on the mv_xor_chan.completed_slots list
107 * @hw_desc: virtual address of the hardware descriptor chain
108 * @phys: hardware address of the hardware descriptor chain
109 * @group_head: first operation in a transaction
110 * @slot_cnt: total slots used in an transaction (group of operations)
111 * @slots_per_op: number of slots per operation
112 * @idx: pool index
113 * @unmap_src_cnt: number of xor sources
114 * @unmap_len: transaction bytecount
Dan Williams64203b62009-09-08 17:53:03 -0700115 * @tx_list: list of slots that make up a multi-descriptor transaction
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700116 * @async_tx: support for the async_tx api
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700117 * @xor_check_result: result of zero sum
118 * @crc32_result: result crc calculation
119 */
120struct mv_xor_desc_slot {
121 struct list_head slot_node;
122 struct list_head chain_node;
123 struct list_head completed_node;
124 enum dma_transaction_type type;
125 void *hw_desc;
126 struct mv_xor_desc_slot *group_head;
127 u16 slot_cnt;
128 u16 slots_per_op;
129 u16 idx;
130 u16 unmap_src_cnt;
131 u32 value;
132 size_t unmap_len;
Dan Williams64203b62009-09-08 17:53:03 -0700133 struct list_head tx_list;
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700134 struct dma_async_tx_descriptor async_tx;
135 union {
136 u32 *xor_check_result;
137 u32 *crc32_result;
138 };
139#ifdef USE_TIMER
140 unsigned long arrival_time;
141 struct timer_list timeout;
142#endif
143};
144
145/* This structure describes XOR descriptor size 64bytes */
146struct mv_xor_desc {
147 u32 status; /* descriptor execution status */
148 u32 crc32_result; /* result of CRC-32 calculation */
149 u32 desc_command; /* type of operation to be carried out */
150 u32 phy_next_desc; /* next descriptor address pointer */
151 u32 byte_count; /* size of src/dst blocks in bytes */
152 u32 phy_dest_addr; /* destination block address */
153 u32 phy_src_addr[8]; /* source block addresses */
154 u32 reserved0;
155 u32 reserved1;
156};
157
158#define to_mv_sw_desc(addr_hw_desc) \
159 container_of(addr_hw_desc, struct mv_xor_desc_slot, hw_desc)
160
161#define mv_hw_desc_slot_idx(hw_desc, idx) \
162 ((void *)(((unsigned long)hw_desc) + ((idx) << 5)))
163
164#define MV_XOR_MIN_BYTE_COUNT (128)
165#define XOR_MAX_BYTE_COUNT ((16 * 1024 * 1024) - 1)
166#define MV_XOR_MAX_BYTE_COUNT XOR_MAX_BYTE_COUNT
167
168
169#endif