1// SPDX-License-Identifier: GPL-2.0
2
3/* Copyright (C) 2023 Linaro Ltd. */
4
5#include <linux/kernel.h>
6#include <linux/log2.h>
7
8#include "../ipa_data.h"
9#include "../ipa_endpoint.h"
10#include "../ipa_mem.h"
11
12/** enum ipa_resource_type - IPA resource types for an SoC having IPA v5.5 */
13enum 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,
20
21 /* Destination resource types; first must have value 0 */
22 IPA_RESOURCE_TYPE_DST_DATA_SECTORS = 0,
23 IPA_RESOURCE_TYPE_DST_DPS_DMARS,
24 IPA_RESOURCE_TYPE_DST_ULSO_SEGMENTS,
25};
26
27/* Resource groups used for an SoC having IPA v5.5 */
28enum ipa_rsrc_group_id {
29 /* Source resource group identifiers */
30 IPA_RSRC_GROUP_SRC_UL = 0,
31 IPA_RSRC_GROUP_SRC_DL,
32 IPA_RSRC_GROUP_SRC_UNUSED_2,
33 IPA_RSRC_GROUP_SRC_UNUSED_3,
34 IPA_RSRC_GROUP_SRC_URLLC,
35 IPA_RSRC_GROUP_SRC_U_RX_QC,
36 IPA_RSRC_GROUP_SRC_COUNT, /* Last in set; not a source group */
37
38 /* Destination resource group identifiers */
39 IPA_RSRC_GROUP_DST_UL = 0,
40 IPA_RSRC_GROUP_DST_DL,
41 IPA_RSRC_GROUP_DST_UNUSED_2,
42 IPA_RSRC_GROUP_DST_UNUSED_3,
43 IPA_RSRC_GROUP_DST_UNUSED_4,
44 IPA_RSRC_GROUP_DST_UC,
45 IPA_RSRC_GROUP_DST_DRB_IP,
46 IPA_RSRC_GROUP_DST_COUNT, /* Last; not a destination group */
47};
48
49/* QSB configuration data for an SoC having IPA v5.5 */
50static const struct ipa_qsb_data ipa_qsb_data[] = {
51 [IPA_QSB_MASTER_DDR] = {
52 .max_writes = 0, /* Unlimited */
53 .max_reads = 12,
54 .max_reads_beats = 0,
55 },
56 [IPA_QSB_MASTER_PCIE] = {
57 .max_writes = 0, /* Unlimited */
58 .max_reads = 8,
59 .max_reads_beats = 0,
60 },
61};
62
63/* Endpoint configuration data for an SoC having IPA v5.5 */
64static const struct ipa_gsi_endpoint_data ipa_gsi_endpoint_data[] = {
65 [IPA_ENDPOINT_AP_COMMAND_TX] = {
66 .ee_id = GSI_EE_AP,
67 .channel_id = 12,
68 .endpoint_id = 14,
69 .toward_ipa = true,
70 .channel = {
71 .tre_count = 256,
72 .event_count = 256,
73 .tlv_count = 20,
74 },
75 .endpoint = {
76 .config = {
77 .resource_group = IPA_RSRC_GROUP_SRC_UL,
78 .dma_mode = true,
79 .dma_endpoint = IPA_ENDPOINT_AP_LAN_RX,
80 .tx = {
81 .seq_type = IPA_SEQ_DMA,
82 },
83 },
84 },
85 },
86 [IPA_ENDPOINT_AP_LAN_RX] = {
87 .ee_id = GSI_EE_AP,
88 .channel_id = 13,
89 .endpoint_id = 16,
90 .toward_ipa = false,
91 .channel = {
92 .tre_count = 256,
93 .event_count = 256,
94 .tlv_count = 9,
95 },
96 .endpoint = {
97 .config = {
98 .resource_group = IPA_RSRC_GROUP_DST_UL,
99 .aggregation = true,
100 .status_enable = true,
101 .rx = {
102 .buffer_size = 8192,
103 .pad_align = ilog2(sizeof(u32)),
104 .aggr_time_limit = 500,
105 },
106 },
107 },
108 },
109 [IPA_ENDPOINT_AP_MODEM_TX] = {
110 .ee_id = GSI_EE_AP,
111 .channel_id = 11,
112 .endpoint_id = 2,
113 .toward_ipa = true,
114 .channel = {
115 .tre_count = 512,
116 .event_count = 512,
117 .tlv_count = 25,
118 },
119 .endpoint = {
120 .filter_support = true,
121 .config = {
122 .resource_group = IPA_RSRC_GROUP_SRC_UL,
123 .checksum = true,
124 .qmap = true,
125 .status_enable = true,
126 .tx = {
127 .seq_type = IPA_SEQ_2_PASS_SKIP_LAST_UC,
128 .status_endpoint =
129 IPA_ENDPOINT_MODEM_AP_RX,
130 },
131 },
132 },
133 },
134 [IPA_ENDPOINT_AP_MODEM_RX] = {
135 .ee_id = GSI_EE_AP,
136 .channel_id = 1,
137 .endpoint_id = 23,
138 .toward_ipa = false,
139 .channel = {
140 .tre_count = 256,
141 .event_count = 256,
142 .tlv_count = 9,
143 },
144 .endpoint = {
145 .config = {
146 .resource_group = IPA_RSRC_GROUP_DST_DL,
147 .checksum = true,
148 .qmap = true,
149 .aggregation = true,
150 .rx = {
151 .buffer_size = 8192,
152 .aggr_time_limit = 500,
153 .aggr_close_eof = true,
154 },
155 },
156 },
157 },
158 [IPA_ENDPOINT_MODEM_AP_TX] = {
159 .ee_id = GSI_EE_MODEM,
160 .channel_id = 0,
161 .endpoint_id = 12,
162 .toward_ipa = true,
163 .endpoint = {
164 .filter_support = true,
165 },
166 },
167 [IPA_ENDPOINT_MODEM_AP_RX] = {
168 .ee_id = GSI_EE_MODEM,
169 .channel_id = 7,
170 .endpoint_id = 21,
171 .toward_ipa = false,
172 },
173 [IPA_ENDPOINT_MODEM_DL_NLO_TX] = {
174 .ee_id = GSI_EE_MODEM,
175 .channel_id = 2,
176 .endpoint_id = 15,
177 .toward_ipa = true,
178 .endpoint = {
179 .filter_support = true,
180 },
181 },
182};
183
184/* Source resource configuration data for an SoC having IPA v5.5 */
185static const struct ipa_resource ipa_resource_src[] = {
186 [IPA_RESOURCE_TYPE_SRC_PKT_CONTEXTS] = {
187 .limits[IPA_RSRC_GROUP_SRC_UL] = {
188 .min = 3, .max = 9,
189 },
190 .limits[IPA_RSRC_GROUP_SRC_DL] = {
191 .min = 4, .max = 10,
192 },
193 .limits[IPA_RSRC_GROUP_SRC_URLLC] = {
194 .min = 1, .max = 63,
195 },
196 .limits[IPA_RSRC_GROUP_SRC_U_RX_QC] = {
197 .min = 0, .max = 63,
198 },
199 },
200 [IPA_RESOURCE_TYPE_SRC_DESCRIPTOR_LISTS] = {
201 .limits[IPA_RSRC_GROUP_SRC_UL] = {
202 .min = 9, .max = 9,
203 },
204 .limits[IPA_RSRC_GROUP_SRC_DL] = {
205 .min = 12, .max = 12,
206 },
207 .limits[IPA_RSRC_GROUP_SRC_URLLC] = {
208 .min = 10, .max = 10,
209 },
210 },
211 [IPA_RESOURCE_TYPE_SRC_DESCRIPTOR_BUFF] = {
212 .limits[IPA_RSRC_GROUP_SRC_UL] = {
213 .min = 9, .max = 9,
214 },
215 .limits[IPA_RSRC_GROUP_SRC_DL] = {
216 .min = 24, .max = 24,
217 },
218 .limits[IPA_RSRC_GROUP_SRC_URLLC] = {
219 .min = 20, .max = 20,
220 },
221 },
222 [IPA_RESOURCE_TYPE_SRC_HPS_DMARS] = {
223 .limits[IPA_RSRC_GROUP_SRC_UL] = {
224 .min = 0, .max = 63,
225 },
226 .limits[IPA_RSRC_GROUP_SRC_DL] = {
227 .min = 0, .max = 63,
228 },
229 .limits[IPA_RSRC_GROUP_SRC_URLLC] = {
230 .min = 1, .max = 63,
231 },
232 .limits[IPA_RSRC_GROUP_SRC_U_RX_QC] = {
233 .min = 0, .max = 63,
234 },
235 },
236 [IPA_RESOURCE_TYPE_SRC_ACK_ENTRIES] = {
237 .limits[IPA_RSRC_GROUP_SRC_UL] = {
238 .min = 22, .max = 22,
239 },
240 .limits[IPA_RSRC_GROUP_SRC_DL] = {
241 .min = 16, .max = 16,
242 },
243 .limits[IPA_RSRC_GROUP_SRC_URLLC] = {
244 .min = 16, .max = 16,
245 },
246 },
247};
248
249/* Destination resource configuration data for an SoC having IPA v5.5 */
250static const struct ipa_resource ipa_resource_dst[] = {
251 [IPA_RESOURCE_TYPE_DST_DATA_SECTORS] = {
252 .limits[IPA_RSRC_GROUP_DST_UL] = {
253 .min = 6, .max = 6,
254 },
255 .limits[IPA_RSRC_GROUP_DST_DL] = {
256 .min = 5, .max = 5,
257 },
258 .limits[IPA_RSRC_GROUP_DST_DRB_IP] = {
259 .min = 39, .max = 39,
260 },
261 },
262 [IPA_RESOURCE_TYPE_DST_DPS_DMARS] = {
263 .limits[IPA_RSRC_GROUP_DST_UL] = {
264 .min = 0, .max = 3,
265 },
266 .limits[IPA_RSRC_GROUP_DST_DL] = {
267 .min = 0, .max = 3,
268 },
269 },
270 [IPA_RESOURCE_TYPE_DST_ULSO_SEGMENTS] = {
271 .limits[IPA_RSRC_GROUP_DST_UL] = {
272 .min = 0, .max = 63,
273 },
274 .limits[IPA_RSRC_GROUP_DST_DL] = {
275 .min = 0, .max = 63,
276 },
277 },
278};
279
280/* Resource configuration data for an SoC having IPA v5.5 */
281static const struct ipa_resource_data ipa_resource_data = {
282 .rsrc_group_dst_count = IPA_RSRC_GROUP_DST_COUNT,
283 .rsrc_group_src_count = IPA_RSRC_GROUP_SRC_COUNT,
284 .resource_src_count = ARRAY_SIZE(ipa_resource_src),
285 .resource_src = ipa_resource_src,
286 .resource_dst_count = ARRAY_SIZE(ipa_resource_dst),
287 .resource_dst = ipa_resource_dst,
288};
289
290/* IPA-resident memory region data for an SoC having IPA v5.5 */
291static const struct ipa_mem ipa_mem_local_data[] = {
292 {
293 .id = IPA_MEM_UC_EVENT_RING,
294 .offset = 0x0000,
295 .size = 0x1000,
296 .canary_count = 0,
297 },
298 {
299 .id = IPA_MEM_UC_SHARED,
300 .offset = 0x1000,
301 .size = 0x0080,
302 .canary_count = 0,
303 },
304 {
305 .id = IPA_MEM_UC_INFO,
306 .offset = 0x1080,
307 .size = 0x0200,
308 .canary_count = 0,
309 },
310 {
311 .id = IPA_MEM_V4_FILTER_HASHED,
312 .offset = 0x1288,
313 .size = 0x0078,
314 .canary_count = 2,
315 },
316 {
317 .id = IPA_MEM_V4_FILTER,
318 .offset = 0x1308,
319 .size = 0x0078,
320 .canary_count = 2,
321 },
322 {
323 .id = IPA_MEM_V6_FILTER_HASHED,
324 .offset = 0x1388,
325 .size = 0x0078,
326 .canary_count = 2,
327 },
328 {
329 .id = IPA_MEM_V6_FILTER,
330 .offset = 0x1408,
331 .size = 0x0078,
332 .canary_count = 2,
333 },
334 {
335 .id = IPA_MEM_V4_ROUTE_HASHED,
336 .offset = 0x1488,
337 .size = 0x0098,
338 .canary_count = 2,
339 },
340 {
341 .id = IPA_MEM_V4_ROUTE,
342 .offset = 0x1528,
343 .size = 0x0098,
344 .canary_count = 2,
345 },
346 {
347 .id = IPA_MEM_V6_ROUTE_HASHED,
348 .offset = 0x15c8,
349 .size = 0x0098,
350 .canary_count = 2,
351 },
352 {
353 .id = IPA_MEM_V6_ROUTE,
354 .offset = 0x1668,
355 .size = 0x0098,
356 .canary_count = 2,
357 },
358 {
359 .id = IPA_MEM_MODEM_HEADER,
360 .offset = 0x1708,
361 .size = 0x0240,
362 .canary_count = 2,
363 },
364 {
365 .id = IPA_MEM_AP_HEADER,
366 .offset = 0x1948,
367 .size = 0x01e0,
368 .canary_count = 0,
369 },
370 {
371 .id = IPA_MEM_MODEM_PROC_CTX,
372 .offset = 0x1b40,
373 .size = 0x0b20,
374 .canary_count = 2,
375 },
376 {
377 .id = IPA_MEM_AP_PROC_CTX,
378 .offset = 0x2660,
379 .size = 0x0200,
380 .canary_count = 0,
381 },
382 {
383 .id = IPA_MEM_STATS_QUOTA_MODEM,
384 .offset = 0x2868,
385 .size = 0x0060,
386 .canary_count = 2,
387 },
388 {
389 .id = IPA_MEM_STATS_QUOTA_AP,
390 .offset = 0x28c8,
391 .size = 0x0048,
392 .canary_count = 0,
393 },
394 {
395 .id = IPA_MEM_STATS_TETHERING,
396 .offset = 0x2910,
397 .size = 0x03c0,
398 .canary_count = 0,
399 },
400 {
401 .id = IPA_MEM_AP_V4_FILTER,
402 .offset = 0x29b8,
403 .size = 0x0188,
404 .canary_count = 2,
405 },
406 {
407 .id = IPA_MEM_AP_V6_FILTER,
408 .offset = 0x2b40,
409 .size = 0x0228,
410 .canary_count = 0,
411 },
412 {
413 .id = IPA_MEM_STATS_FILTER_ROUTE,
414 .offset = 0x2cd0,
415 .size = 0x0ba0,
416 .canary_count = 2,
417 },
418 {
419 .id = IPA_MEM_STATS_DROP,
420 .offset = 0x3870,
421 .size = 0x0020,
422 .canary_count = 0,
423 },
424 {
425 .id = IPA_MEM_MODEM,
426 .offset = 0x3898,
427 .size = 0x0d48,
428 .canary_count = 2,
429 },
430 {
431 .id = IPA_MEM_NAT_TABLE,
432 .offset = 0x45e0,
433 .size = 0x0900,
434 .canary_count = 0,
435 },
436 {
437 .id = IPA_MEM_PDN_CONFIG,
438 .offset = 0x4ee8,
439 .size = 0x0100,
440 .canary_count = 2,
441 },
442};
443
444/* Memory configuration data for an SoC having IPA v5.5 */
445static const struct ipa_mem_data ipa_mem_data = {
446 .local_count = ARRAY_SIZE(ipa_mem_local_data),
447 .local = ipa_mem_local_data,
448 .imem_addr = 0x14688000,
449 .imem_size = 0x00002000,
450 .smem_id = 497,
451 .smem_size = 0x0000b000,
452};
453
454/* Interconnect rates are in 1000 byte/second units */
455static const struct ipa_interconnect_data ipa_interconnect_data[] = {
456 {
457 .name = "memory",
458 .peak_bandwidth = 1900000, /* 1.9 GBps */
459 .average_bandwidth = 600000, /* 600 MBps */
460 },
461 /* Average rate is unused for the next interconnect */
462 {
463 .name = "config",
464 .peak_bandwidth = 76800, /* 76.8 MBps */
465 .average_bandwidth = 0, /* unused */
466 },
467};
468
469/* Clock and interconnect configuration data for an SoC having IPA v5.5 */
470static const struct ipa_power_data ipa_power_data = {
471 .core_clock_rate = 120 * 1000 * 1000, /* Hz */
472 .interconnect_count = ARRAY_SIZE(ipa_interconnect_data),
473 .interconnect_data = ipa_interconnect_data,
474};
475
476/* Configuration data for an SoC having IPA v5.5. */
477const struct ipa_data ipa_data_v5_5 = {
478 .version = IPA_VERSION_5_5,
479 .qsb_count = ARRAY_SIZE(ipa_qsb_data),
480 .qsb_data = ipa_qsb_data,
481 .modem_route_count = 11,
482 .endpoint_count = ARRAY_SIZE(ipa_gsi_endpoint_data),
483 .endpoint_data = ipa_gsi_endpoint_data,
484 .resource_data = &ipa_resource_data,
485 .mem_data = &ipa_mem_data,
486 .power_data = &ipa_power_data,
487};
488

source code of linux/drivers/net/ipa/data/ipa_data-v5.5.c