2 * Qualcomm Technologies HIDMA data structures
4 * Copyright (c) 2014, The Linux Foundation. All rights reserved.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 and
8 * only version 2 as published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
19 #include <linux/kfifo.h>
20 #include <linux/interrupt.h>
21 #include <linux/dmaengine.h>
23 #define TRE_SIZE 32 /* each TRE is 32 bytes */
26 #define TRE_SRC_LOW_IDX 2
27 #define TRE_SRC_HI_IDX 3
28 #define TRE_DEST_LOW_IDX 4
29 #define TRE_DEST_HI_IDX 5
31 struct hidma_tx_status
{
32 u8 err_info
; /* error record in this transfer */
33 u8 err_code
; /* completion code */
37 atomic_t allocated
; /* if this channel is allocated */
38 bool queued
; /* flag whether this is pending */
39 u16 status
; /* status */
40 u32 chidx
; /* index of the tre */
41 u32 dma_sig
; /* signature of the tre */
42 const char *dev_name
; /* name of the device */
43 void (*callback
)(void *data
); /* requester callback */
44 void *data
; /* Data associated with this channel*/
45 struct hidma_lldev
*lldev
; /* lldma device pointer */
46 u32 tre_local
[TRE_SIZE
/ sizeof(u32
) + 1]; /* TRE local copy */
47 u32 tre_index
; /* the offset where this was written*/
48 u32 int_flags
; /* interrupt flags */
52 bool initialized
; /* initialized flag */
53 u8 trch_state
; /* trch_state of the device */
54 u8 evch_state
; /* evch_state of the device */
55 u8 chidx
; /* channel index in the core */
56 u32 nr_tres
; /* max number of configs */
57 spinlock_t lock
; /* reentrancy */
58 struct hidma_tre
*trepool
; /* trepool of user configs */
59 struct device
*dev
; /* device */
60 void __iomem
*trca
; /* Transfer Channel address */
61 void __iomem
*evca
; /* Event Channel address */
63 **pending_tre_list
; /* Pointers to pending TREs */
64 struct hidma_tx_status
65 *tx_status_list
; /* Pointers to pending TREs status*/
66 s32 pending_tre_count
; /* Number of TREs pending */
68 void *tre_ring
; /* TRE ring */
69 dma_addr_t tre_ring_handle
; /* TRE ring to be shared with HW */
70 u32 tre_ring_size
; /* Byte size of the ring */
71 u32 tre_processed_off
; /* last processed TRE */
73 void *evre_ring
; /* EVRE ring */
74 dma_addr_t evre_ring_handle
; /* EVRE ring to be shared with HW */
75 u32 evre_ring_size
; /* Byte size of the ring */
76 u32 evre_processed_off
; /* last processed EVRE */
78 u32 tre_write_offset
; /* TRE write location */
79 struct tasklet_struct task
; /* task delivering notifications */
80 DECLARE_KFIFO_PTR(handoff_fifo
,
81 struct hidma_tre
*); /* pending TREs FIFO */
85 struct dma_async_tx_descriptor desc
;
86 /* link list node for this channel*/
87 struct list_head node
;
98 * active descriptor on this channel
99 * It is used by the DMA complete notification to
100 * locate the descriptor that initiated the transfer.
102 struct dentry
*debugfs
;
103 struct dentry
*stats
;
104 struct hidma_dev
*dmadev
;
105 struct hidma_desc
*running
;
107 struct dma_chan chan
;
108 struct list_head free
;
109 struct list_head prepared
;
110 struct list_head active
;
111 struct list_head completed
;
113 /* Lock for this structure */
122 struct hidma_lldev
*lldev
;
123 void __iomem
*dev_trca
;
124 struct resource
*trca_resource
;
125 void __iomem
*dev_evca
;
126 struct resource
*evca_resource
;
128 /* used to protect the pending channel list*/
130 struct dma_device ddev
;
132 struct dentry
*debugfs
;
133 struct dentry
*stats
;
135 /* Task delivering issue_pending */
136 struct tasklet_struct task
;
139 int hidma_ll_request(struct hidma_lldev
*llhndl
, u32 dev_id
,
140 const char *dev_name
,
141 void (*callback
)(void *data
), void *data
, u32
*tre_ch
);
143 void hidma_ll_free(struct hidma_lldev
*llhndl
, u32 tre_ch
);
144 enum dma_status
hidma_ll_status(struct hidma_lldev
*llhndl
, u32 tre_ch
);
145 bool hidma_ll_isenabled(struct hidma_lldev
*llhndl
);
146 void hidma_ll_queue_request(struct hidma_lldev
*llhndl
, u32 tre_ch
);
147 void hidma_ll_start(struct hidma_lldev
*llhndl
);
148 int hidma_ll_pause(struct hidma_lldev
*llhndl
);
149 int hidma_ll_resume(struct hidma_lldev
*llhndl
);
150 void hidma_ll_set_transfer_params(struct hidma_lldev
*llhndl
, u32 tre_ch
,
151 dma_addr_t src
, dma_addr_t dest
, u32 len
, u32 flags
);
152 int hidma_ll_setup(struct hidma_lldev
*lldev
);
153 struct hidma_lldev
*hidma_ll_init(struct device
*dev
, u32 max_channels
,
154 void __iomem
*trca
, void __iomem
*evca
,
156 int hidma_ll_uninit(struct hidma_lldev
*llhndl
);
157 irqreturn_t
hidma_ll_inthandler(int irq
, void *arg
);
158 void hidma_cleanup_pending_tre(struct hidma_lldev
*llhndl
, u8 err_info
,