Home
last modified time | relevance | path

Searched refs:tre_local (Results 1 – 3 of 3) sorted by relevance

/openbmc/linux/drivers/dma/qcom/
H A Dhidma_dbg.c22 u32 *tre_local; in hidma_ll_chstats() local
42 tre_local = &tre->tre_local[0]; in hidma_ll_chstats()
43 src_start = tre_local[HIDMA_TRE_SRC_LOW_IDX]; in hidma_ll_chstats()
44 src_start = ((u64) (tre_local[HIDMA_TRE_SRC_HI_IDX]) << 32) + src_start; in hidma_ll_chstats()
45 dest_start = tre_local[HIDMA_TRE_DEST_LOW_IDX]; in hidma_ll_chstats()
46 dest_start += ((u64) (tre_local[HIDMA_TRE_DEST_HI_IDX]) << 32); in hidma_ll_chstats()
47 length = tre_local[HIDMA_TRE_LEN_IDX]; in hidma_ll_chstats()
H A Dhidma_ll.c139 u32 *tre_local; in hidma_ll_request() local
164 tre_local = &tre->tre_local[0]; in hidma_ll_request()
166 tre_local[HIDMA_TRE_CFG_IDX] |= BIT(16); /* set IEOB */ in hidma_ll_request()
536 &tre->tre_local[0], HIDMA_TRE_SIZE); in hidma_ll_queue_request()
603 u32 *tre_local; in hidma_ll_set_transfer_params() local
618 tre_local = &tre->tre_local[0]; in hidma_ll_set_transfer_params()
619 tre_local[HIDMA_TRE_CFG_IDX] &= ~GENMASK(7, 0); in hidma_ll_set_transfer_params()
620 tre_local[HIDMA_TRE_CFG_IDX] |= txntype; in hidma_ll_set_transfer_params()
621 tre_local[HIDMA_TRE_LEN_IDX] = len; in hidma_ll_set_transfer_params()
622 tre_local[HIDMA_TRE_SRC_LOW_IDX] = lower_32_bits(src); in hidma_ll_set_transfer_params()
[all …]
H A Dhidma.h38 u32 tre_local[HIDMA_TRE_SIZE / sizeof(u32) + 1]; /* TRE local copy */ member