blob: 122f86d8c991d73e587c786eba41bf85a6ec5a21 [file] [log] [blame]
Dan Williamsc2110922007-01-02 13:52:26 -07001/*
2 * Copyright © 2006, Intel Corporation.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * 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 for
11 * more details.
12 *
13 * You should have received a copy of the GNU General Public License along with
14 * this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
16 *
17 */
18#ifndef IOP_ADMA_H
19#define IOP_ADMA_H
20#include <linux/types.h>
21#include <linux/dmaengine.h>
22#include <linux/interrupt.h>
23
24#define IOP_ADMA_SLOT_SIZE 32
25#define IOP_ADMA_THRESHOLD 4
Dan Williams65e50382008-11-11 13:12:33 -070026#ifdef DEBUG
27#define IOP_PARANOIA 1
28#else
29#define IOP_PARANOIA 0
30#endif
31#define iop_paranoia(x) BUG_ON(IOP_PARANOIA && (x))
Dan Williamsc2110922007-01-02 13:52:26 -070032
33/**
34 * struct iop_adma_device - internal representation of an ADMA device
35 * @pdev: Platform device
36 * @id: HW ADMA Device selector
37 * @dma_desc_pool: base of DMA descriptor region (DMA address)
38 * @dma_desc_pool_virt: base of DMA descriptor region (CPU address)
39 * @common: embedded struct dma_device
40 */
41struct iop_adma_device {
42 struct platform_device *pdev;
43 int id;
44 dma_addr_t dma_desc_pool;
45 void *dma_desc_pool_virt;
46 struct dma_device common;
47};
48
49/**
50 * struct iop_adma_chan - internal representation of an ADMA device
51 * @pending: allows batching of hardware operations
Dan Williamsc2110922007-01-02 13:52:26 -070052 * @lock: serializes enqueue/dequeue operations to the slot pool
53 * @mmr_base: memory mapped register base
54 * @chain: device chain view of the descriptors
55 * @device: parent device
56 * @common: common dmaengine channel object members
57 * @last_used: place holder for allocation to continue from where it left off
58 * @all_slots: complete domain of slots usable by the channel
Dan Williamsc2110922007-01-02 13:52:26 -070059 * @slots_allocated: records the actual size of the descriptor slot pool
60 * @irq_tasklet: bottom half where iop_adma_slot_cleanup runs
61 */
62struct iop_adma_chan {
63 int pending;
Dan Williamsc2110922007-01-02 13:52:26 -070064 spinlock_t lock; /* protects the descriptor slot pool */
65 void __iomem *mmr_base;
66 struct list_head chain;
67 struct iop_adma_device *device;
68 struct dma_chan common;
69 struct iop_adma_desc_slot *last_used;
70 struct list_head all_slots;
Dan Williamsc2110922007-01-02 13:52:26 -070071 int slots_allocated;
72 struct tasklet_struct irq_tasklet;
73};
74
75/**
76 * struct iop_adma_desc_slot - IOP-ADMA software descriptor
77 * @slot_node: node on the iop_adma_chan.all_slots list
78 * @chain_node: node on the op_adma_chan.chain list
79 * @hw_desc: virtual address of the hardware descriptor chain
80 * @phys: hardware address of the hardware descriptor chain
81 * @group_head: first operation in a transaction
82 * @slot_cnt: total slots used in an transaction (group of operations)
83 * @slots_per_op: number of slots per operation
84 * @idx: pool index
85 * @unmap_src_cnt: number of xor sources
86 * @unmap_len: transaction bytecount
Dan Williams308136d2009-09-08 17:53:02 -070087 * @tx_list: list of descriptors that are associated with one operation
Dan Williamsc2110922007-01-02 13:52:26 -070088 * @async_tx: support for the async_tx api
89 * @group_list: list of slots that make up a multi-descriptor transaction
90 * for example transfer lengths larger than the supported hw max
91 * @xor_check_result: result of zero sum
92 * @crc32_result: result crc calculation
93 */
94struct iop_adma_desc_slot {
95 struct list_head slot_node;
96 struct list_head chain_node;
97 void *hw_desc;
98 struct iop_adma_desc_slot *group_head;
99 u16 slot_cnt;
100 u16 slots_per_op;
101 u16 idx;
102 u16 unmap_src_cnt;
103 size_t unmap_len;
Dan Williams308136d2009-09-08 17:53:02 -0700104 struct list_head tx_list;
Dan Williamsc2110922007-01-02 13:52:26 -0700105 struct dma_async_tx_descriptor async_tx;
106 union {
107 u32 *xor_check_result;
108 u32 *crc32_result;
Dan Williams7bf649a2009-08-28 14:32:04 -0700109 u32 *pq_check_result;
Dan Williamsc2110922007-01-02 13:52:26 -0700110 };
111};
112
113struct iop_adma_platform_data {
114 int hw_id;
115 dma_cap_mask_t cap_mask;
116 size_t pool_size;
117};
118
119#define to_iop_sw_desc(addr_hw_desc) \
120 container_of(addr_hw_desc, struct iop_adma_desc_slot, hw_desc)
121#define iop_hw_desc_slot_idx(hw_desc, idx) \
122 ( (void *) (((unsigned long) hw_desc) + ((idx) << 5)) )
123#endif