1 /* SPDX-License-Identifier: GPL-2.0 */ 2 /* 3 * Copyright (C) 2019 Texas Instruments Incorporated - http://www.ti.com 4 */ 5 6 #ifndef K3_PSIL_H_ 7 #define K3_PSIL_H_ 8 9 #include <linux/types.h> 10 11 #define K3_PSIL_DST_THREAD_ID_OFFSET 0x8000 12 13 struct device; 14 15 /** 16 * enum udma_tp_level - Channel Throughput Levels 17 * @UDMA_TP_NORMAL: Normal channel 18 * @UDMA_TP_HIGH: High Throughput channel 19 * @UDMA_TP_ULTRAHIGH: Ultra High Throughput channel 20 */ 21 enum udma_tp_level { 22 UDMA_TP_NORMAL = 0, 23 UDMA_TP_HIGH, 24 UDMA_TP_ULTRAHIGH, 25 UDMA_TP_LAST, 26 }; 27 28 /** 29 * enum psil_endpoint_type - PSI-L Endpoint type 30 * @PSIL_EP_NATIVE: Normal channel 31 * @PSIL_EP_PDMA_XY: XY mode PDMA 32 * @PSIL_EP_PDMA_MCAN: MCAN mode PDMA 33 * @PSIL_EP_PDMA_AASRC: AASRC mode PDMA 34 */ 35 enum psil_endpoint_type { 36 PSIL_EP_NATIVE = 0, 37 PSIL_EP_PDMA_XY, 38 PSIL_EP_PDMA_MCAN, 39 PSIL_EP_PDMA_AASRC, 40 }; 41 42 /** 43 * struct psil_endpoint_config - PSI-L Endpoint configuration 44 * @ep_type: PSI-L endpoint type 45 * @pkt_mode: If set, the channel must be in Packet mode, otherwise in 46 * TR mode 47 * @notdpkt: TDCM must be suppressed on the TX channel 48 * @needs_epib: Endpoint needs EPIB 49 * @psd_size: If set, PSdata is used by the endpoint 50 * @channel_tpl: Desired throughput level for the channel 51 * @pdma_acc32: ACC32 must be enabled on the PDMA side 52 * @pdma_burst: BURST must be enabled on the PDMA side 53 * @mapped_channel_id: PKTDMA thread to channel mapping for mapped 54 * channels. The thread must be serviced by the specified 55 * channel if mapped_channel_id is >= 0 in case of PKTDMA 56 * @flow_start: PKTDMA flow range start of mapped channel. Unmapped 57 * channels use flow_id == chan_id 58 * @flow_num: PKTDMA flow count of mapped channel. Unmapped 59 * channels use flow_id == chan_id 60 * @default_flow_id: PKTDMA default (r)flow index of mapped channel. 61 * Must be within the flow range of the mapped channel. 62 */ 63 struct psil_endpoint_config { 64 enum psil_endpoint_type ep_type; 65 66 unsigned pkt_mode:1; 67 unsigned notdpkt:1; 68 unsigned needs_epib:1; 69 u32 psd_size; 70 enum udma_tp_level channel_tpl; 71 72 /* PDMA properties, valid for PSIL_EP_PDMA_* */ 73 unsigned pdma_acc32:1; 74 unsigned pdma_burst:1; 75 76 /* PKTDMA mapped channel */ 77 int mapped_channel_id; 78 /* PKTDMA tflow and rflow ranges for mapped channel */ 79 u16 flow_start; 80 u16 flow_num; 81 u16 default_flow_id; 82 }; 83 #endif /* K3_PSIL_H_ */ 84