1 // SPDX-License-Identifier: GPL-2.0
3 /* Copyright (C) 2021 Linaro Ltd. */
5 #include <linux/log2.h>
9 #include "ipa_endpoint.h"
12 /** enum ipa_resource_type - IPA resource types for an SoC having IPA v4.11 */
13 enum ipa_resource_type {
14 /* Source resource types; first must have value 0 */
15 IPA_RESOURCE_TYPE_SRC_PKT_CONTEXTS = 0,
16 IPA_RESOURCE_TYPE_SRC_DESCRIPTOR_LISTS,
17 IPA_RESOURCE_TYPE_SRC_DESCRIPTOR_BUFF,
18 IPA_RESOURCE_TYPE_SRC_HPS_DMARS,
19 IPA_RESOURCE_TYPE_SRC_ACK_ENTRIES,
21 /* Destination resource types; first must have value 0 */
22 IPA_RESOURCE_TYPE_DST_DATA_SECTORS = 0,
23 IPA_RESOURCE_TYPE_DST_DPS_DMARS,
26 /* Resource groups used for an SoC having IPA v4.11 */
27 enum ipa_rsrc_group_id {
28 /* Source resource group identifiers */
29 IPA_RSRC_GROUP_SRC_UL_DL = 0,
30 IPA_RSRC_GROUP_SRC_UC_RX_Q,
31 IPA_RSRC_GROUP_SRC_UNUSED_2,
32 IPA_RSRC_GROUP_SRC_COUNT, /* Last in set; not a source group */
34 /* Destination resource group identifiers */
35 IPA_RSRC_GROUP_DST_UL_DL_DPL = 0,
36 IPA_RSRC_GROUP_DST_UNUSED_1,
37 IPA_RSRC_GROUP_DST_DRB_IP,
38 IPA_RSRC_GROUP_DST_COUNT, /* Last; not a destination group */
41 /* QSB configuration data for an SoC having IPA v4.11 */
42 static const struct ipa_qsb_data ipa_qsb_data[] = {
43 [IPA_QSB_MASTER_DDR] = {
46 .max_reads_beats = 120,
50 /* Endpoint configuration data for an SoC having IPA v4.11 */
51 static const struct ipa_gsi_endpoint_data ipa_gsi_endpoint_data[] = {
52 [IPA_ENDPOINT_AP_COMMAND_TX] = {
64 .resource_group = IPA_RSRC_GROUP_SRC_UL_DL,
66 .dma_endpoint = IPA_ENDPOINT_AP_LAN_RX,
68 .seq_type = IPA_SEQ_DMA,
73 [IPA_ENDPOINT_AP_LAN_RX] = {
85 .resource_group = IPA_RSRC_GROUP_DST_UL_DL_DPL,
87 .status_enable = true,
89 .pad_align = ilog2(sizeof(u32)),
94 [IPA_ENDPOINT_AP_MODEM_TX] = {
105 .filter_support = true,
107 .resource_group = IPA_RSRC_GROUP_SRC_UL_DL,
110 .status_enable = true,
112 .seq_type = IPA_SEQ_2_PASS_SKIP_LAST_UC,
114 IPA_ENDPOINT_MODEM_AP_RX,
119 [IPA_ENDPOINT_AP_MODEM_RX] = {
131 .resource_group = IPA_RSRC_GROUP_DST_UL_DL_DPL,
136 .aggr_close_eof = true,
141 [IPA_ENDPOINT_MODEM_AP_TX] = {
142 .ee_id = GSI_EE_MODEM,
147 .filter_support = true,
150 [IPA_ENDPOINT_MODEM_AP_RX] = {
151 .ee_id = GSI_EE_MODEM,
156 [IPA_ENDPOINT_MODEM_DL_NLO_TX] = {
157 .ee_id = GSI_EE_MODEM,
162 .filter_support = true,
167 /* Source resource configuration data for an SoC having IPA v4.11 */
168 static const struct ipa_resource ipa_resource_src[] = {
169 [IPA_RESOURCE_TYPE_SRC_PKT_CONTEXTS] = {
170 .limits[IPA_RSRC_GROUP_SRC_UL_DL] = {
174 [IPA_RESOURCE_TYPE_SRC_DESCRIPTOR_LISTS] = {
175 .limits[IPA_RSRC_GROUP_SRC_UL_DL] = {
179 [IPA_RESOURCE_TYPE_SRC_DESCRIPTOR_BUFF] = {
180 .limits[IPA_RSRC_GROUP_SRC_UL_DL] = {
181 .min = 18, .max = 18,
184 [IPA_RESOURCE_TYPE_SRC_HPS_DMARS] = {
185 .limits[IPA_RSRC_GROUP_SRC_UL_DL] = {
189 [IPA_RESOURCE_TYPE_SRC_ACK_ENTRIES] = {
190 .limits[IPA_RSRC_GROUP_SRC_UL_DL] = {
191 .min = 15, .max = 15,
196 /* Destination resource configuration data for an SoC having IPA v4.11 */
197 static const struct ipa_resource ipa_resource_dst[] = {
198 [IPA_RESOURCE_TYPE_DST_DATA_SECTORS] = {
199 .limits[IPA_RSRC_GROUP_DST_UL_DL_DPL] = {
202 .limits[IPA_RSRC_GROUP_DST_DRB_IP] = {
203 .min = 25, .max = 25,
206 [IPA_RESOURCE_TYPE_DST_DPS_DMARS] = {
207 .limits[IPA_RSRC_GROUP_DST_UL_DL_DPL] = {
213 /* Resource configuration data for an SoC having IPA v4.11 */
214 static const struct ipa_resource_data ipa_resource_data = {
215 .rsrc_group_src_count = IPA_RSRC_GROUP_SRC_COUNT,
216 .rsrc_group_dst_count = IPA_RSRC_GROUP_DST_COUNT,
217 .resource_src_count = ARRAY_SIZE(ipa_resource_src),
218 .resource_src = ipa_resource_src,
219 .resource_dst_count = ARRAY_SIZE(ipa_resource_dst),
220 .resource_dst = ipa_resource_dst,
223 /* IPA-resident memory region data for an SoC having IPA v4.11 */
224 static const struct ipa_mem ipa_mem_local_data[] = {
226 .id = IPA_MEM_UC_SHARED,
232 .id = IPA_MEM_UC_INFO,
238 .id = IPA_MEM_V4_FILTER_HASHED,
244 .id = IPA_MEM_V4_FILTER,
250 .id = IPA_MEM_V6_FILTER_HASHED,
256 .id = IPA_MEM_V6_FILTER,
262 .id = IPA_MEM_V4_ROUTE_HASHED,
268 .id = IPA_MEM_V4_ROUTE,
274 .id = IPA_MEM_V6_ROUTE_HASHED,
280 .id = IPA_MEM_V6_ROUTE,
286 .id = IPA_MEM_MODEM_HEADER,
292 .id = IPA_MEM_AP_HEADER,
298 .id = IPA_MEM_MODEM_PROC_CTX,
304 .id = IPA_MEM_AP_PROC_CTX,
310 .id = IPA_MEM_NAT_TABLE,
316 .id = IPA_MEM_PDN_CONFIG,
322 .id = IPA_MEM_STATS_QUOTA_MODEM,
328 .id = IPA_MEM_STATS_QUOTA_AP,
334 .id = IPA_MEM_STATS_TETHERING,
340 .id = IPA_MEM_STATS_DROP,
352 .id = IPA_MEM_END_MARKER,
359 /* Memory configuration data for an SoC having IPA v4.11 */
360 static const struct ipa_mem_data ipa_mem_data = {
361 .local_count = ARRAY_SIZE(ipa_mem_local_data),
362 .local = ipa_mem_local_data,
363 .imem_addr = 0x146a8000,
364 .imem_size = 0x00002000,
366 .smem_size = 0x00009000,
369 /* Interconnect rates are in 1000 byte/second units */
370 static const struct ipa_interconnect_data ipa_interconnect_data[] = {
373 .peak_bandwidth = 600000, /* 600 MBps */
374 .average_bandwidth = 150000, /* 150 MBps */
376 /* Average rate is unused for the next interconnect */
379 .peak_bandwidth = 74000, /* 74 MBps */
380 .average_bandwidth = 0, /* unused */
384 /* Clock and interconnect configuration data for an SoC having IPA v4.11 */
385 static const struct ipa_power_data ipa_power_data = {
386 .core_clock_rate = 60 * 1000 * 1000, /* Hz */
387 .interconnect_count = ARRAY_SIZE(ipa_interconnect_data),
388 .interconnect_data = ipa_interconnect_data,
391 /* Configuration data for an SoC having IPA v4.11 */
392 const struct ipa_data ipa_data_v4_11 = {
393 .version = IPA_VERSION_4_11,
394 .qsb_count = ARRAY_SIZE(ipa_qsb_data),
395 .qsb_data = ipa_qsb_data,
396 .endpoint_count = ARRAY_SIZE(ipa_gsi_endpoint_data),
397 .endpoint_data = ipa_gsi_endpoint_data,
398 .resource_data = &ipa_resource_data,
399 .mem_data = &ipa_mem_data,
400 .power_data = &ipa_power_data,