2 * Qualcomm Technologies HIDMA DMA engine low level code
4 * Copyright (c) 2015-2016, 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.
16 #include <linux/dmaengine.h>
17 #include <linux/slab.h>
18 #include <linux/interrupt.h>
20 #include <linux/highmem.h>
21 #include <linux/dma-mapping.h>
22 #include <linux/delay.h>
23 #include <linux/atomic.h>
24 #include <linux/iopoll.h>
25 #include <linux/kfifo.h>
26 #include <linux/bitops.h>
30 #define HIDMA_EVRE_SIZE 16 /* each EVRE is 16 bytes */
32 #define HIDMA_TRCA_CTRLSTS_REG 0x000
33 #define HIDMA_TRCA_RING_LOW_REG 0x008
34 #define HIDMA_TRCA_RING_HIGH_REG 0x00C
35 #define HIDMA_TRCA_RING_LEN_REG 0x010
36 #define HIDMA_TRCA_DOORBELL_REG 0x400
38 #define HIDMA_EVCA_CTRLSTS_REG 0x000
39 #define HIDMA_EVCA_INTCTRL_REG 0x004
40 #define HIDMA_EVCA_RING_LOW_REG 0x008
41 #define HIDMA_EVCA_RING_HIGH_REG 0x00C
42 #define HIDMA_EVCA_RING_LEN_REG 0x010
43 #define HIDMA_EVCA_WRITE_PTR_REG 0x020
44 #define HIDMA_EVCA_DOORBELL_REG 0x400
46 #define HIDMA_EVCA_IRQ_STAT_REG 0x100
47 #define HIDMA_EVCA_IRQ_CLR_REG 0x108
48 #define HIDMA_EVCA_IRQ_EN_REG 0x110
50 #define HIDMA_EVRE_CFG_IDX 0
52 #define HIDMA_EVRE_ERRINFO_BIT_POS 24
53 #define HIDMA_EVRE_CODE_BIT_POS 28
55 #define HIDMA_EVRE_ERRINFO_MASK GENMASK(3, 0)
56 #define HIDMA_EVRE_CODE_MASK GENMASK(3, 0)
58 #define HIDMA_CH_CONTROL_MASK GENMASK(7, 0)
59 #define HIDMA_CH_STATE_MASK GENMASK(7, 0)
60 #define HIDMA_CH_STATE_BIT_POS 0x8
62 #define HIDMA_IRQ_EV_CH_EOB_IRQ_BIT_POS 0
63 #define HIDMA_IRQ_EV_CH_WR_RESP_BIT_POS 1
64 #define HIDMA_IRQ_TR_CH_TRE_RD_RSP_ER_BIT_POS 9
65 #define HIDMA_IRQ_TR_CH_DATA_RD_ER_BIT_POS 10
66 #define HIDMA_IRQ_TR_CH_DATA_WR_ER_BIT_POS 11
67 #define HIDMA_IRQ_TR_CH_INVALID_TRE_BIT_POS 14
69 #define ENABLE_IRQS (BIT(HIDMA_IRQ_EV_CH_EOB_IRQ_BIT_POS) | \
70 BIT(HIDMA_IRQ_EV_CH_WR_RESP_BIT_POS) | \
71 BIT(HIDMA_IRQ_TR_CH_TRE_RD_RSP_ER_BIT_POS) | \
72 BIT(HIDMA_IRQ_TR_CH_DATA_RD_ER_BIT_POS) | \
73 BIT(HIDMA_IRQ_TR_CH_DATA_WR_ER_BIT_POS) | \
74 BIT(HIDMA_IRQ_TR_CH_INVALID_TRE_BIT_POS))
76 #define HIDMA_INCREMENT_ITERATOR(iter, size, ring_size) \
79 if (iter >= ring_size) \
83 #define HIDMA_CH_STATE(val) \
84 ((val >> HIDMA_CH_STATE_BIT_POS) & HIDMA_CH_STATE_MASK)
86 #define HIDMA_ERR_INT_MASK \
87 (BIT(HIDMA_IRQ_TR_CH_INVALID_TRE_BIT_POS) | \
88 BIT(HIDMA_IRQ_TR_CH_TRE_RD_RSP_ER_BIT_POS) | \
89 BIT(HIDMA_IRQ_EV_CH_WR_RESP_BIT_POS) | \
90 BIT(HIDMA_IRQ_TR_CH_DATA_RD_ER_BIT_POS) | \
91 BIT(HIDMA_IRQ_TR_CH_DATA_WR_ER_BIT_POS))
101 HIDMA_CH_DISABLED
= 0,
102 HIDMA_CH_ENABLED
= 1,
103 HIDMA_CH_RUNNING
= 2,
104 HIDMA_CH_SUSPENDED
= 3,
105 HIDMA_CH_STOPPED
= 4,
109 HIDMA_EVRE_STATUS_COMPLETE
= 1,
110 HIDMA_EVRE_STATUS_ERROR
= 4,
113 static int hidma_is_chan_enabled(int state
)
116 case HIDMA_CH_ENABLED
:
117 case HIDMA_CH_RUNNING
:
124 void hidma_ll_free(struct hidma_lldev
*lldev
, u32 tre_ch
)
126 struct hidma_tre
*tre
;
128 if (tre_ch
>= lldev
->nr_tres
) {
129 dev_err(lldev
->dev
, "invalid TRE number in free:%d", tre_ch
);
133 tre
= &lldev
->trepool
[tre_ch
];
134 if (atomic_read(&tre
->allocated
) != true) {
135 dev_err(lldev
->dev
, "trying to free an unused TRE:%d", tre_ch
);
139 atomic_set(&tre
->allocated
, 0);
142 int hidma_ll_request(struct hidma_lldev
*lldev
, u32 sig
, const char *dev_name
,
143 void (*callback
)(void *data
), void *data
, u32
*tre_ch
)
146 struct hidma_tre
*tre
;
149 if (!tre_ch
|| !lldev
)
152 /* need to have at least one empty spot in the queue */
153 for (i
= 0; i
< lldev
->nr_tres
- 1; i
++) {
154 if (atomic_add_unless(&lldev
->trepool
[i
].allocated
, 1, 1))
158 if (i
== (lldev
->nr_tres
- 1))
161 tre
= &lldev
->trepool
[i
];
163 tre
->dev_name
= dev_name
;
164 tre
->callback
= callback
;
172 tre_local
= &tre
->tre_local
[0];
173 tre_local
[HIDMA_TRE_CFG_IDX
] = (lldev
->chidx
& 0xFF) << 8;
174 tre_local
[HIDMA_TRE_CFG_IDX
] |= BIT(16); /* set IEOB */
182 * Multiple TREs may be queued and waiting in the pending queue.
184 static void hidma_ll_tre_complete(unsigned long arg
)
186 struct hidma_lldev
*lldev
= (struct hidma_lldev
*)arg
;
187 struct hidma_tre
*tre
;
189 while (kfifo_out(&lldev
->handoff_fifo
, &tre
, 1)) {
190 /* call the user if it has been read by the hardware */
192 tre
->callback(tre
->data
);
196 static int hidma_post_completed(struct hidma_lldev
*lldev
, u8 err_info
,
199 struct hidma_tre
*tre
;
203 spin_lock_irqsave(&lldev
->lock
, flags
);
205 tre_iterator
= lldev
->tre_processed_off
;
206 tre
= lldev
->pending_tre_list
[tre_iterator
/ HIDMA_TRE_SIZE
];
208 spin_unlock_irqrestore(&lldev
->lock
, flags
);
209 dev_warn(lldev
->dev
, "tre_index [%d] and tre out of sync\n",
210 tre_iterator
/ HIDMA_TRE_SIZE
);
213 lldev
->pending_tre_list
[tre
->tre_index
] = NULL
;
216 * Keep track of pending TREs that SW is expecting to receive
217 * from HW. We got one now. Decrement our counter.
219 if (atomic_dec_return(&lldev
->pending_tre_count
) < 0) {
220 dev_warn(lldev
->dev
, "tre count mismatch on completion");
221 atomic_set(&lldev
->pending_tre_count
, 0);
224 HIDMA_INCREMENT_ITERATOR(tre_iterator
, HIDMA_TRE_SIZE
,
225 lldev
->tre_ring_size
);
226 lldev
->tre_processed_off
= tre_iterator
;
227 spin_unlock_irqrestore(&lldev
->lock
, flags
);
229 tre
->err_info
= err_info
;
230 tre
->err_code
= err_code
;
233 kfifo_put(&lldev
->handoff_fifo
, tre
);
234 tasklet_schedule(&lldev
->task
);
240 * Called to handle the interrupt for the channel.
241 * Return a positive number if TRE or EVRE were consumed on this run.
242 * Return a positive number if there are pending TREs or EVREs.
243 * Return 0 if there is nothing to consume or no pending TREs/EVREs found.
245 static int hidma_handle_tre_completion(struct hidma_lldev
*lldev
)
247 u32 evre_ring_size
= lldev
->evre_ring_size
;
248 u32 err_info
, err_code
, evre_write_off
;
250 u32 num_completed
= 0;
252 evre_write_off
= readl_relaxed(lldev
->evca
+ HIDMA_EVCA_WRITE_PTR_REG
);
253 evre_iterator
= lldev
->evre_processed_off
;
255 if ((evre_write_off
> evre_ring_size
) ||
256 (evre_write_off
% HIDMA_EVRE_SIZE
)) {
257 dev_err(lldev
->dev
, "HW reports invalid EVRE write offset\n");
262 * By the time control reaches here the number of EVREs and TREs
263 * may not match. Only consume the ones that hardware told us.
265 while ((evre_iterator
!= evre_write_off
)) {
266 u32
*current_evre
= lldev
->evre_ring
+ evre_iterator
;
269 cfg
= current_evre
[HIDMA_EVRE_CFG_IDX
];
270 err_info
= cfg
>> HIDMA_EVRE_ERRINFO_BIT_POS
;
271 err_info
&= HIDMA_EVRE_ERRINFO_MASK
;
273 (cfg
>> HIDMA_EVRE_CODE_BIT_POS
) & HIDMA_EVRE_CODE_MASK
;
275 if (hidma_post_completed(lldev
, err_info
, err_code
))
278 HIDMA_INCREMENT_ITERATOR(evre_iterator
, HIDMA_EVRE_SIZE
,
282 * Read the new event descriptor written by the HW.
283 * As we are processing the delivered events, other events
284 * get queued to the SW for processing.
287 readl_relaxed(lldev
->evca
+ HIDMA_EVCA_WRITE_PTR_REG
);
291 * An error interrupt might have arrived while we are processing
292 * the completed interrupt.
294 if (!hidma_ll_isenabled(lldev
))
299 u32 evre_read_off
= (lldev
->evre_processed_off
+
300 HIDMA_EVRE_SIZE
* num_completed
);
301 evre_read_off
= evre_read_off
% evre_ring_size
;
302 writel(evre_read_off
, lldev
->evca
+ HIDMA_EVCA_DOORBELL_REG
);
304 /* record the last processed tre offset */
305 lldev
->evre_processed_off
= evre_read_off
;
308 return num_completed
;
311 void hidma_cleanup_pending_tre(struct hidma_lldev
*lldev
, u8 err_info
,
314 while (atomic_read(&lldev
->pending_tre_count
)) {
315 if (hidma_post_completed(lldev
, err_info
, err_code
))
320 static int hidma_ll_reset(struct hidma_lldev
*lldev
)
325 val
= readl(lldev
->trca
+ HIDMA_TRCA_CTRLSTS_REG
);
326 val
&= ~(HIDMA_CH_CONTROL_MASK
<< 16);
327 val
|= HIDMA_CH_RESET
<< 16;
328 writel(val
, lldev
->trca
+ HIDMA_TRCA_CTRLSTS_REG
);
331 * Delay 10ms after reset to allow DMA logic to quiesce.
332 * Do a polled read up to 1ms and 10ms maximum.
334 ret
= readl_poll_timeout(lldev
->trca
+ HIDMA_TRCA_CTRLSTS_REG
, val
,
335 HIDMA_CH_STATE(val
) == HIDMA_CH_DISABLED
,
338 dev_err(lldev
->dev
, "transfer channel did not reset\n");
342 val
= readl(lldev
->evca
+ HIDMA_EVCA_CTRLSTS_REG
);
343 val
&= ~(HIDMA_CH_CONTROL_MASK
<< 16);
344 val
|= HIDMA_CH_RESET
<< 16;
345 writel(val
, lldev
->evca
+ HIDMA_EVCA_CTRLSTS_REG
);
348 * Delay 10ms after reset to allow DMA logic to quiesce.
349 * Do a polled read up to 1ms and 10ms maximum.
351 ret
= readl_poll_timeout(lldev
->evca
+ HIDMA_EVCA_CTRLSTS_REG
, val
,
352 HIDMA_CH_STATE(val
) == HIDMA_CH_DISABLED
,
357 lldev
->trch_state
= HIDMA_CH_DISABLED
;
358 lldev
->evch_state
= HIDMA_CH_DISABLED
;
363 * The interrupt handler for HIDMA will try to consume as many pending
364 * EVRE from the event queue as possible. Each EVRE has an associated
365 * TRE that holds the user interface parameters. EVRE reports the
366 * result of the transaction. Hardware guarantees ordering between EVREs
367 * and TREs. We use last processed offset to figure out which TRE is
368 * associated with which EVRE. If two TREs are consumed by HW, the EVREs
369 * are in order in the event ring.
371 * This handler will do a one pass for consuming EVREs. Other EVREs may
372 * be delivered while we are working. It will try to consume incoming
373 * EVREs one more time and return.
375 * For unprocessed EVREs, hardware will trigger another interrupt until
376 * all the interrupt bits are cleared.
378 * Hardware guarantees that by the time interrupt is observed, all data
379 * transactions in flight are delivered to their respective places and
380 * are visible to the CPU.
382 * On demand paging for IOMMU is only supported for PCIe via PRI
383 * (Page Request Interface) not for HIDMA. All other hardware instances
384 * including HIDMA work on pinned DMA addresses.
386 * HIDMA is not aware of IOMMU presence since it follows the DMA API. All
387 * IOMMU latency will be built into the data movement time. By the time
388 * interrupt happens, IOMMU lookups + data movement has already taken place.
390 * While the first read in a typical PCI endpoint ISR flushes all outstanding
391 * requests traditionally to the destination, this concept does not apply
394 static void hidma_ll_int_handler_internal(struct hidma_lldev
*lldev
, int cause
)
396 unsigned long irqflags
;
398 if (cause
& HIDMA_ERR_INT_MASK
) {
399 dev_err(lldev
->dev
, "error 0x%x, disabling...\n",
402 /* Clear out pending interrupts */
403 writel(cause
, lldev
->evca
+ HIDMA_EVCA_IRQ_CLR_REG
);
405 /* No further submissions. */
406 hidma_ll_disable(lldev
);
408 /* Driver completes the txn and intimates the client.*/
409 hidma_cleanup_pending_tre(lldev
, 0xFF,
410 HIDMA_EVRE_STATUS_ERROR
);
415 spin_lock_irqsave(&lldev
->lock
, irqflags
);
416 writel_relaxed(cause
, lldev
->evca
+ HIDMA_EVCA_IRQ_CLR_REG
);
417 spin_unlock_irqrestore(&lldev
->lock
, irqflags
);
420 * Fine tuned for this HW...
422 * This ISR has been designed for this particular hardware. Relaxed
423 * read and write accessors are used for performance reasons due to
424 * interrupt delivery guarantees. Do not copy this code blindly and
425 * expect that to work.
427 * Try to consume as many EVREs as possible.
429 hidma_handle_tre_completion(lldev
);
432 irqreturn_t
hidma_ll_inthandler(int chirq
, void *arg
)
434 struct hidma_lldev
*lldev
= arg
;
439 status
= readl_relaxed(lldev
->evca
+ HIDMA_EVCA_IRQ_STAT_REG
);
440 enable
= readl_relaxed(lldev
->evca
+ HIDMA_EVCA_IRQ_EN_REG
);
441 cause
= status
& enable
;
444 hidma_ll_int_handler_internal(lldev
, cause
);
447 * Another interrupt might have arrived while we are
448 * processing this one. Read the new cause.
450 status
= readl_relaxed(lldev
->evca
+ HIDMA_EVCA_IRQ_STAT_REG
);
451 enable
= readl_relaxed(lldev
->evca
+ HIDMA_EVCA_IRQ_EN_REG
);
452 cause
= status
& enable
;
458 irqreturn_t
hidma_ll_inthandler_msi(int chirq
, void *arg
, int cause
)
460 struct hidma_lldev
*lldev
= arg
;
462 hidma_ll_int_handler_internal(lldev
, cause
);
466 int hidma_ll_enable(struct hidma_lldev
*lldev
)
471 val
= readl(lldev
->evca
+ HIDMA_EVCA_CTRLSTS_REG
);
472 val
&= ~(HIDMA_CH_CONTROL_MASK
<< 16);
473 val
|= HIDMA_CH_ENABLE
<< 16;
474 writel(val
, lldev
->evca
+ HIDMA_EVCA_CTRLSTS_REG
);
476 ret
= readl_poll_timeout(lldev
->evca
+ HIDMA_EVCA_CTRLSTS_REG
, val
,
477 hidma_is_chan_enabled(HIDMA_CH_STATE(val
)),
480 dev_err(lldev
->dev
, "event channel did not get enabled\n");
484 val
= readl(lldev
->trca
+ HIDMA_TRCA_CTRLSTS_REG
);
485 val
&= ~(HIDMA_CH_CONTROL_MASK
<< 16);
486 val
|= HIDMA_CH_ENABLE
<< 16;
487 writel(val
, lldev
->trca
+ HIDMA_TRCA_CTRLSTS_REG
);
489 ret
= readl_poll_timeout(lldev
->trca
+ HIDMA_TRCA_CTRLSTS_REG
, val
,
490 hidma_is_chan_enabled(HIDMA_CH_STATE(val
)),
493 dev_err(lldev
->dev
, "transfer channel did not get enabled\n");
497 lldev
->trch_state
= HIDMA_CH_ENABLED
;
498 lldev
->evch_state
= HIDMA_CH_ENABLED
;
501 writel(ENABLE_IRQS
, lldev
->evca
+ HIDMA_EVCA_IRQ_EN_REG
);
506 void hidma_ll_start(struct hidma_lldev
*lldev
)
508 unsigned long irqflags
;
510 spin_lock_irqsave(&lldev
->lock
, irqflags
);
511 writel(lldev
->tre_write_offset
, lldev
->trca
+ HIDMA_TRCA_DOORBELL_REG
);
512 spin_unlock_irqrestore(&lldev
->lock
, irqflags
);
515 bool hidma_ll_isenabled(struct hidma_lldev
*lldev
)
519 val
= readl(lldev
->trca
+ HIDMA_TRCA_CTRLSTS_REG
);
520 lldev
->trch_state
= HIDMA_CH_STATE(val
);
521 val
= readl(lldev
->evca
+ HIDMA_EVCA_CTRLSTS_REG
);
522 lldev
->evch_state
= HIDMA_CH_STATE(val
);
524 /* both channels have to be enabled before calling this function */
525 if (hidma_is_chan_enabled(lldev
->trch_state
) &&
526 hidma_is_chan_enabled(lldev
->evch_state
))
532 void hidma_ll_queue_request(struct hidma_lldev
*lldev
, u32 tre_ch
)
534 struct hidma_tre
*tre
;
537 tre
= &lldev
->trepool
[tre_ch
];
539 /* copy the TRE into its location in the TRE ring */
540 spin_lock_irqsave(&lldev
->lock
, flags
);
541 tre
->tre_index
= lldev
->tre_write_offset
/ HIDMA_TRE_SIZE
;
542 lldev
->pending_tre_list
[tre
->tre_index
] = tre
;
543 memcpy(lldev
->tre_ring
+ lldev
->tre_write_offset
,
544 &tre
->tre_local
[0], HIDMA_TRE_SIZE
);
548 atomic_inc(&lldev
->pending_tre_count
);
549 lldev
->tre_write_offset
= (lldev
->tre_write_offset
+ HIDMA_TRE_SIZE
)
550 % lldev
->tre_ring_size
;
551 spin_unlock_irqrestore(&lldev
->lock
, flags
);
555 * Note that even though we stop this channel if there is a pending transaction
556 * in flight it will complete and follow the callback. This request will
557 * prevent further requests to be made.
559 int hidma_ll_disable(struct hidma_lldev
*lldev
)
564 /* The channel needs to be in working state */
565 if (!hidma_ll_isenabled(lldev
))
568 val
= readl(lldev
->trca
+ HIDMA_TRCA_CTRLSTS_REG
);
569 val
&= ~(HIDMA_CH_CONTROL_MASK
<< 16);
570 val
|= HIDMA_CH_SUSPEND
<< 16;
571 writel(val
, lldev
->trca
+ HIDMA_TRCA_CTRLSTS_REG
);
574 * Start the wait right after the suspend is confirmed.
575 * Do a polled read up to 1ms and 10ms maximum.
577 ret
= readl_poll_timeout(lldev
->trca
+ HIDMA_TRCA_CTRLSTS_REG
, val
,
578 HIDMA_CH_STATE(val
) == HIDMA_CH_SUSPENDED
,
583 val
= readl(lldev
->evca
+ HIDMA_EVCA_CTRLSTS_REG
);
584 val
&= ~(HIDMA_CH_CONTROL_MASK
<< 16);
585 val
|= HIDMA_CH_SUSPEND
<< 16;
586 writel(val
, lldev
->evca
+ HIDMA_EVCA_CTRLSTS_REG
);
589 * Start the wait right after the suspend is confirmed
590 * Delay up to 10ms after reset to allow DMA logic to quiesce.
592 ret
= readl_poll_timeout(lldev
->evca
+ HIDMA_EVCA_CTRLSTS_REG
, val
,
593 HIDMA_CH_STATE(val
) == HIDMA_CH_SUSPENDED
,
598 lldev
->trch_state
= HIDMA_CH_SUSPENDED
;
599 lldev
->evch_state
= HIDMA_CH_SUSPENDED
;
601 /* disable interrupts */
602 writel(0, lldev
->evca
+ HIDMA_EVCA_IRQ_EN_REG
);
606 void hidma_ll_set_transfer_params(struct hidma_lldev
*lldev
, u32 tre_ch
,
607 dma_addr_t src
, dma_addr_t dest
, u32 len
,
608 u32 flags
, u32 txntype
)
610 struct hidma_tre
*tre
;
613 if (tre_ch
>= lldev
->nr_tres
) {
614 dev_err(lldev
->dev
, "invalid TRE number in transfer params:%d",
619 tre
= &lldev
->trepool
[tre_ch
];
620 if (atomic_read(&tre
->allocated
) != true) {
621 dev_err(lldev
->dev
, "trying to set params on an unused TRE:%d",
626 tre_local
= &tre
->tre_local
[0];
627 tre_local
[HIDMA_TRE_CFG_IDX
] &= ~GENMASK(7, 0);
628 tre_local
[HIDMA_TRE_CFG_IDX
] |= txntype
;
629 tre_local
[HIDMA_TRE_LEN_IDX
] = len
;
630 tre_local
[HIDMA_TRE_SRC_LOW_IDX
] = lower_32_bits(src
);
631 tre_local
[HIDMA_TRE_SRC_HI_IDX
] = upper_32_bits(src
);
632 tre_local
[HIDMA_TRE_DEST_LOW_IDX
] = lower_32_bits(dest
);
633 tre_local
[HIDMA_TRE_DEST_HI_IDX
] = upper_32_bits(dest
);
634 tre
->int_flags
= flags
;
638 * Called during initialization and after an error condition
639 * to restore hardware state.
641 int hidma_ll_setup(struct hidma_lldev
*lldev
)
646 u32 nr_tres
= lldev
->nr_tres
;
648 atomic_set(&lldev
->pending_tre_count
, 0);
649 lldev
->tre_processed_off
= 0;
650 lldev
->evre_processed_off
= 0;
651 lldev
->tre_write_offset
= 0;
653 /* disable interrupts */
654 writel(0, lldev
->evca
+ HIDMA_EVCA_IRQ_EN_REG
);
656 /* clear all pending interrupts */
657 val
= readl(lldev
->evca
+ HIDMA_EVCA_IRQ_STAT_REG
);
658 writel(val
, lldev
->evca
+ HIDMA_EVCA_IRQ_CLR_REG
);
660 rc
= hidma_ll_reset(lldev
);
665 * Clear all pending interrupts again.
666 * Otherwise, we observe reset complete interrupts.
668 val
= readl(lldev
->evca
+ HIDMA_EVCA_IRQ_STAT_REG
);
669 writel(val
, lldev
->evca
+ HIDMA_EVCA_IRQ_CLR_REG
);
671 /* disable interrupts again after reset */
672 writel(0, lldev
->evca
+ HIDMA_EVCA_IRQ_EN_REG
);
674 addr
= lldev
->tre_dma
;
675 writel(lower_32_bits(addr
), lldev
->trca
+ HIDMA_TRCA_RING_LOW_REG
);
676 writel(upper_32_bits(addr
), lldev
->trca
+ HIDMA_TRCA_RING_HIGH_REG
);
677 writel(lldev
->tre_ring_size
, lldev
->trca
+ HIDMA_TRCA_RING_LEN_REG
);
679 addr
= lldev
->evre_dma
;
680 writel(lower_32_bits(addr
), lldev
->evca
+ HIDMA_EVCA_RING_LOW_REG
);
681 writel(upper_32_bits(addr
), lldev
->evca
+ HIDMA_EVCA_RING_HIGH_REG
);
682 writel(HIDMA_EVRE_SIZE
* nr_tres
,
683 lldev
->evca
+ HIDMA_EVCA_RING_LEN_REG
);
685 /* configure interrupts */
686 hidma_ll_setup_irq(lldev
, lldev
->msi_support
);
688 rc
= hidma_ll_enable(lldev
);
695 void hidma_ll_setup_irq(struct hidma_lldev
*lldev
, bool msi
)
699 lldev
->msi_support
= msi
;
701 /* disable interrupts again after reset */
702 writel(0, lldev
->evca
+ HIDMA_EVCA_IRQ_CLR_REG
);
703 writel(0, lldev
->evca
+ HIDMA_EVCA_IRQ_EN_REG
);
705 /* support IRQ by default */
706 val
= readl(lldev
->evca
+ HIDMA_EVCA_INTCTRL_REG
);
708 if (!lldev
->msi_support
)
710 writel(val
, lldev
->evca
+ HIDMA_EVCA_INTCTRL_REG
);
712 /* clear all pending interrupts and enable them */
713 writel(ENABLE_IRQS
, lldev
->evca
+ HIDMA_EVCA_IRQ_CLR_REG
);
714 writel(ENABLE_IRQS
, lldev
->evca
+ HIDMA_EVCA_IRQ_EN_REG
);
717 struct hidma_lldev
*hidma_ll_init(struct device
*dev
, u32 nr_tres
,
718 void __iomem
*trca
, void __iomem
*evca
,
722 struct hidma_lldev
*lldev
;
726 if (!trca
|| !evca
|| !dev
|| !nr_tres
)
729 /* need at least four TREs */
733 /* need an extra space */
736 lldev
= devm_kzalloc(dev
, sizeof(struct hidma_lldev
), GFP_KERNEL
);
743 sz
= sizeof(struct hidma_tre
);
744 lldev
->trepool
= devm_kcalloc(lldev
->dev
, nr_tres
, sz
, GFP_KERNEL
);
748 required_bytes
= sizeof(lldev
->pending_tre_list
[0]);
749 lldev
->pending_tre_list
= devm_kcalloc(dev
, nr_tres
, required_bytes
,
751 if (!lldev
->pending_tre_list
)
754 sz
= (HIDMA_TRE_SIZE
+ 1) * nr_tres
;
755 lldev
->tre_ring
= dmam_alloc_coherent(dev
, sz
, &lldev
->tre_dma
,
757 if (!lldev
->tre_ring
)
760 memset(lldev
->tre_ring
, 0, (HIDMA_TRE_SIZE
+ 1) * nr_tres
);
761 lldev
->tre_ring_size
= HIDMA_TRE_SIZE
* nr_tres
;
762 lldev
->nr_tres
= nr_tres
;
764 /* the TRE ring has to be TRE_SIZE aligned */
765 if (!IS_ALIGNED(lldev
->tre_dma
, HIDMA_TRE_SIZE
)) {
768 tre_ring_shift
= lldev
->tre_dma
% HIDMA_TRE_SIZE
;
769 tre_ring_shift
= HIDMA_TRE_SIZE
- tre_ring_shift
;
770 lldev
->tre_dma
+= tre_ring_shift
;
771 lldev
->tre_ring
+= tre_ring_shift
;
774 sz
= (HIDMA_EVRE_SIZE
+ 1) * nr_tres
;
775 lldev
->evre_ring
= dmam_alloc_coherent(dev
, sz
, &lldev
->evre_dma
,
777 if (!lldev
->evre_ring
)
780 memset(lldev
->evre_ring
, 0, (HIDMA_EVRE_SIZE
+ 1) * nr_tres
);
781 lldev
->evre_ring_size
= HIDMA_EVRE_SIZE
* nr_tres
;
783 /* the EVRE ring has to be EVRE_SIZE aligned */
784 if (!IS_ALIGNED(lldev
->evre_dma
, HIDMA_EVRE_SIZE
)) {
787 evre_ring_shift
= lldev
->evre_dma
% HIDMA_EVRE_SIZE
;
788 evre_ring_shift
= HIDMA_EVRE_SIZE
- evre_ring_shift
;
789 lldev
->evre_dma
+= evre_ring_shift
;
790 lldev
->evre_ring
+= evre_ring_shift
;
792 lldev
->nr_tres
= nr_tres
;
793 lldev
->chidx
= chidx
;
795 sz
= nr_tres
* sizeof(struct hidma_tre
*);
796 rc
= kfifo_alloc(&lldev
->handoff_fifo
, sz
, GFP_KERNEL
);
800 rc
= hidma_ll_setup(lldev
);
804 spin_lock_init(&lldev
->lock
);
805 tasklet_init(&lldev
->task
, hidma_ll_tre_complete
, (unsigned long)lldev
);
806 lldev
->initialized
= 1;
807 writel(ENABLE_IRQS
, lldev
->evca
+ HIDMA_EVCA_IRQ_EN_REG
);
811 int hidma_ll_uninit(struct hidma_lldev
*lldev
)
820 if (!lldev
->initialized
)
823 lldev
->initialized
= 0;
825 required_bytes
= sizeof(struct hidma_tre
) * lldev
->nr_tres
;
826 tasklet_kill(&lldev
->task
);
827 memset(lldev
->trepool
, 0, required_bytes
);
828 lldev
->trepool
= NULL
;
829 atomic_set(&lldev
->pending_tre_count
, 0);
830 lldev
->tre_write_offset
= 0;
832 rc
= hidma_ll_reset(lldev
);
835 * Clear all pending interrupts again.
836 * Otherwise, we observe reset complete interrupts.
838 val
= readl(lldev
->evca
+ HIDMA_EVCA_IRQ_STAT_REG
);
839 writel(val
, lldev
->evca
+ HIDMA_EVCA_IRQ_CLR_REG
);
840 writel(0, lldev
->evca
+ HIDMA_EVCA_IRQ_EN_REG
);
844 enum dma_status
hidma_ll_status(struct hidma_lldev
*lldev
, u32 tre_ch
)
846 enum dma_status ret
= DMA_ERROR
;
847 struct hidma_tre
*tre
;
851 spin_lock_irqsave(&lldev
->lock
, flags
);
853 tre
= &lldev
->trepool
[tre_ch
];
854 err_code
= tre
->err_code
;
856 if (err_code
& HIDMA_EVRE_STATUS_COMPLETE
)
858 else if (err_code
& HIDMA_EVRE_STATUS_ERROR
)
861 ret
= DMA_IN_PROGRESS
;
862 spin_unlock_irqrestore(&lldev
->lock
, flags
);