blob: 88eeab222a23e374aed42b32f6f4e7003be5fa81 [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.
Saeed Bisharaff7b0472008-07-08 11:58:36 -070012 */
13
14#ifndef MV_XOR_H
15#define MV_XOR_H
16
17#include <linux/types.h>
18#include <linux/io.h>
19#include <linux/dmaengine.h>
20#include <linux/interrupt.h>
21
Lior Amsalemf1d25e02015-05-26 15:07:35 +020022#define MV_XOR_POOL_SIZE (MV_XOR_SLOT_SIZE * 3072)
Saeed Bisharaff7b0472008-07-08 11:58:36 -070023#define MV_XOR_SLOT_SIZE 64
24#define MV_XOR_THRESHOLD 1
Thomas Petazzoni60d151f2012-10-29 16:54:49 +010025#define MV_XOR_MAX_CHANNELS 2
Saeed Bisharaff7b0472008-07-08 11:58:36 -070026
Lior Amsalem22843542014-08-27 10:52:55 -030027#define MV_XOR_MIN_BYTE_COUNT SZ_128
28#define MV_XOR_MAX_BYTE_COUNT (SZ_16M - 1)
29
Thomas Petazzonie03bc652013-07-29 17:42:14 +020030/* Values for the XOR_CONFIG register */
Saeed Bisharaff7b0472008-07-08 11:58:36 -070031#define XOR_OPERATION_MODE_XOR 0
32#define XOR_OPERATION_MODE_MEMCPY 2
Lior Amsalem6f166312015-05-26 15:07:34 +020033#define XOR_OPERATION_MODE_IN_DESC 7
Thomas Petazzonie03bc652013-07-29 17:42:14 +020034#define XOR_DESCRIPTOR_SWAP BIT(14)
Lior Amsalem91362912015-05-26 15:07:32 +020035#define XOR_DESC_SUCCESS 0x40000000
Saeed Bisharaff7b0472008-07-08 11:58:36 -070036
Lior Amsalem6f166312015-05-26 15:07:34 +020037#define XOR_DESC_OPERATION_XOR (0 << 24)
38#define XOR_DESC_OPERATION_CRC32C (1 << 24)
39#define XOR_DESC_OPERATION_MEMCPY (2 << 24)
40
Ezequiel Garcia0e7488e2014-08-27 10:52:52 -030041#define XOR_DESC_DMA_OWNED BIT(31)
42#define XOR_DESC_EOD_INT_EN BIT(31)
43
Ezequiel Garcia82a14022013-10-30 12:01:43 -030044#define XOR_CURR_DESC(chan) (chan->mmr_high_base + 0x10 + (chan->idx * 4))
45#define XOR_NEXT_DESC(chan) (chan->mmr_high_base + 0x00 + (chan->idx * 4))
46#define XOR_BYTE_COUNT(chan) (chan->mmr_high_base + 0x20 + (chan->idx * 4))
47#define XOR_DEST_POINTER(chan) (chan->mmr_high_base + 0xB0 + (chan->idx * 4))
48#define XOR_BLOCK_SIZE(chan) (chan->mmr_high_base + 0xC0 + (chan->idx * 4))
49#define XOR_INIT_VALUE_LOW(chan) (chan->mmr_high_base + 0xE0)
50#define XOR_INIT_VALUE_HIGH(chan) (chan->mmr_high_base + 0xE4)
Saeed Bisharaff7b0472008-07-08 11:58:36 -070051
52#define XOR_CONFIG(chan) (chan->mmr_base + 0x10 + (chan->idx * 4))
53#define XOR_ACTIVATION(chan) (chan->mmr_base + 0x20 + (chan->idx * 4))
54#define XOR_INTR_CAUSE(chan) (chan->mmr_base + 0x30)
55#define XOR_INTR_MASK(chan) (chan->mmr_base + 0x40)
56#define XOR_ERROR_CAUSE(chan) (chan->mmr_base + 0x50)
57#define XOR_ERROR_ADDR(chan) (chan->mmr_base + 0x60)
Ezequiel Garcia0e7488e2014-08-27 10:52:52 -030058
59#define XOR_INT_END_OF_DESC BIT(0)
60#define XOR_INT_END_OF_CHAIN BIT(1)
61#define XOR_INT_STOPPED BIT(2)
62#define XOR_INT_PAUSED BIT(3)
63#define XOR_INT_ERR_DECODE BIT(4)
64#define XOR_INT_ERR_RDPROT BIT(5)
65#define XOR_INT_ERR_WRPROT BIT(6)
66#define XOR_INT_ERR_OWN BIT(7)
67#define XOR_INT_ERR_PAR BIT(8)
68#define XOR_INT_ERR_MBUS BIT(9)
69
70#define XOR_INTR_ERRORS (XOR_INT_ERR_DECODE | XOR_INT_ERR_RDPROT | \
71 XOR_INT_ERR_WRPROT | XOR_INT_ERR_OWN | \
72 XOR_INT_ERR_PAR | XOR_INT_ERR_MBUS)
73
Lior Amsalemba87d132014-08-27 10:52:53 -030074#define XOR_INTR_MASK_VALUE (XOR_INT_END_OF_DESC | XOR_INT_END_OF_CHAIN | \
Ezequiel Garcia0e7488e2014-08-27 10:52:52 -030075 XOR_INT_STOPPED | XOR_INTR_ERRORS)
Saeed Bisharaff7b0472008-07-08 11:58:36 -070076
Ezequiel Garcia82a14022013-10-30 12:01:43 -030077#define WINDOW_BASE(w) (0x50 + ((w) << 2))
78#define WINDOW_SIZE(w) (0x70 + ((w) << 2))
79#define WINDOW_REMAP_HIGH(w) (0x90 + ((w) << 2))
80#define WINDOW_BAR_ENABLE(chan) (0x40 + ((chan) << 2))
81#define WINDOW_OVERRIDE_CTRL(chan) (0xA0 + ((chan) << 2))
Saeed Bisharaff7b0472008-07-08 11:58:36 -070082
Stefan Roese77ff7a72016-09-15 07:37:31 +020083#define WINDOW_COUNT 8
84
Thomas Petazzoni297eedb2012-11-15 15:29:53 +010085struct mv_xor_device {
Thomas Petazzoni60d151f2012-10-29 16:54:49 +010086 void __iomem *xor_base;
87 void __iomem *xor_high_base;
88 struct clk *clk;
Thomas Petazzoni1ef48a22012-11-15 15:17:05 +010089 struct mv_xor_chan *channels[MV_XOR_MAX_CHANNELS];
Gregory CLEMENTdd130c62016-04-29 09:49:06 +020090 int xor_type;
Stefan Roese77ff7a72016-09-15 07:37:31 +020091
92 u32 win_start[WINDOW_COUNT];
93 u32 win_end[WINDOW_COUNT];
Saeed Bisharaff7b0472008-07-08 11:58:36 -070094};
95
96/**
97 * struct mv_xor_chan - internal representation of a XOR channel
98 * @pending: allows batching of hardware operations
Saeed Bisharaff7b0472008-07-08 11:58:36 -070099 * @lock: serializes enqueue/dequeue operations to the descriptors pool
100 * @mmr_base: memory mapped register base
101 * @idx: the index of the xor channel
102 * @chain: device chain view of the descriptors
Lior Amsalemfbea28a2015-05-26 15:07:36 +0200103 * @free_slots: free slots usable by the channel
104 * @allocated_slots: slots allocated by the driver
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700105 * @completed_slots: slots completed by HW but still need to be acked
106 * @device: parent device
107 * @common: common dmaengine channel object members
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700108 * @slots_allocated: records the actual size of the descriptor slot pool
109 * @irq_tasklet: bottom half where mv_xor_slot_cleanup runs
Lior Amsalem6f166312015-05-26 15:07:34 +0200110 * @op_in_desc: new mode of driver, each op is writen to descriptor.
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700111 */
112struct mv_xor_chan {
113 int pending;
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700114 spinlock_t lock; /* protects the descriptor slot pool */
115 void __iomem *mmr_base;
Ezequiel Garcia82a14022013-10-30 12:01:43 -0300116 void __iomem *mmr_high_base;
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700117 unsigned int idx;
Thomas Petazzoni88eb92c2012-11-15 16:11:18 +0100118 int irq;
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700119 struct list_head chain;
Lior Amsalemfbea28a2015-05-26 15:07:36 +0200120 struct list_head free_slots;
121 struct list_head allocated_slots;
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700122 struct list_head completed_slots;
Thomas Petazzoni1ef48a22012-11-15 15:17:05 +0100123 dma_addr_t dma_desc_pool;
124 void *dma_desc_pool_virt;
125 size_t pool_size;
126 struct dma_device dmadev;
Thomas Petazzoni98817b92012-11-15 14:57:44 +0100127 struct dma_chan dmachan;
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700128 int slots_allocated;
129 struct tasklet_struct irq_tasklet;
Lior Amsalem6f166312015-05-26 15:07:34 +0200130 int op_in_desc;
Lior Amsalem22843542014-08-27 10:52:55 -0300131 char dummy_src[MV_XOR_MIN_BYTE_COUNT];
132 char dummy_dst[MV_XOR_MIN_BYTE_COUNT];
133 dma_addr_t dummy_src_addr, dummy_dst_addr;
Thomas Petazzoni8b648432015-12-22 11:43:29 +0100134 u32 saved_config_reg, saved_int_mask_reg;
Stefan Roese77ff7a72016-09-15 07:37:31 +0200135
136 struct mv_xor_device *xordev;
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700137};
138
139/**
140 * struct mv_xor_desc_slot - software descriptor
Lior Amsalemfbea28a2015-05-26 15:07:36 +0200141 * @node: node on the mv_xor_chan lists
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700142 * @hw_desc: virtual address of the hardware descriptor chain
143 * @phys: hardware address of the hardware descriptor chain
Lior Amsalemdfc97662014-08-27 10:52:51 -0300144 * @slot_used: slot in use or not
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700145 * @idx: pool index
Dan Williams64203b62009-09-08 17:53:03 -0700146 * @tx_list: list of slots that make up a multi-descriptor transaction
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700147 * @async_tx: support for the async_tx api
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700148 */
149struct mv_xor_desc_slot {
Lior Amsalemfbea28a2015-05-26 15:07:36 +0200150 struct list_head node;
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700151 enum dma_transaction_type type;
152 void *hw_desc;
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700153 u16 idx;
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700154 struct dma_async_tx_descriptor async_tx;
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700155};
156
Thomas Petazzonie03bc652013-07-29 17:42:14 +0200157/*
158 * This structure describes XOR descriptor size 64bytes. The
159 * mv_phy_src_idx() macro must be used when indexing the values of the
160 * phy_src_addr[] array. This is due to the fact that the 'descriptor
161 * swap' feature, used on big endian systems, swaps descriptors data
162 * within blocks of 8 bytes. So two consecutive values of the
163 * phy_src_addr[] array are actually swapped in big-endian, which
164 * explains the different mv_phy_src_idx() implementation.
165 */
166#if defined(__LITTLE_ENDIAN)
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700167struct mv_xor_desc {
168 u32 status; /* descriptor execution status */
169 u32 crc32_result; /* result of CRC-32 calculation */
170 u32 desc_command; /* type of operation to be carried out */
171 u32 phy_next_desc; /* next descriptor address pointer */
172 u32 byte_count; /* size of src/dst blocks in bytes */
173 u32 phy_dest_addr; /* destination block address */
174 u32 phy_src_addr[8]; /* source block addresses */
175 u32 reserved0;
176 u32 reserved1;
177};
Thomas Petazzonie03bc652013-07-29 17:42:14 +0200178#define mv_phy_src_idx(src_idx) (src_idx)
179#else
180struct mv_xor_desc {
181 u32 crc32_result; /* result of CRC-32 calculation */
182 u32 status; /* descriptor execution status */
183 u32 phy_next_desc; /* next descriptor address pointer */
184 u32 desc_command; /* type of operation to be carried out */
185 u32 phy_dest_addr; /* destination block address */
186 u32 byte_count; /* size of src/dst blocks in bytes */
187 u32 phy_src_addr[8]; /* source block addresses */
188 u32 reserved1;
189 u32 reserved0;
190};
191#define mv_phy_src_idx(src_idx) (src_idx ^ 1)
192#endif
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700193
194#define to_mv_sw_desc(addr_hw_desc) \
195 container_of(addr_hw_desc, struct mv_xor_desc_slot, hw_desc)
196
197#define mv_hw_desc_slot_idx(hw_desc, idx) \
198 ((void *)(((unsigned long)hw_desc) + ((idx) << 5)))
199
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700200#endif