ipahal_i.h 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2016-2019, The Linux Foundation. All rights reserved.
  4. */
  5. #ifndef _IPAHAL_I_H_
  6. #define _IPAHAL_I_H_
  7. #include <linux/ipa.h>
  8. #include "../../ipa_common_i.h"
  9. #define IPAHAL_DRV_NAME "ipahal"
  10. #define IPAHAL_DBG(fmt, args...) \
  11. do { \
  12. pr_debug(IPAHAL_DRV_NAME " %s:%d " fmt, __func__, __LINE__, \
  13. ## args); \
  14. IPA_IPC_LOGGING(ipa_get_ipc_logbuf(), \
  15. IPAHAL_DRV_NAME " %s:%d " fmt, ## args); \
  16. IPA_IPC_LOGGING(ipa_get_ipc_logbuf_low(), \
  17. IPAHAL_DRV_NAME " %s:%d " fmt, ## args); \
  18. } while (0)
  19. #define IPAHAL_DBG_LOW(fmt, args...) \
  20. do { \
  21. pr_debug(IPAHAL_DRV_NAME " %s:%d " fmt, __func__, __LINE__, \
  22. ## args); \
  23. IPA_IPC_LOGGING(ipa_get_ipc_logbuf_low(), \
  24. IPAHAL_DRV_NAME " %s:%d " fmt, ## args); \
  25. } while (0)
  26. #define IPAHAL_ERR(fmt, args...) \
  27. do { \
  28. pr_err(IPAHAL_DRV_NAME " %s:%d " fmt, __func__, __LINE__, \
  29. ## args); \
  30. IPA_IPC_LOGGING(ipa_get_ipc_logbuf(), \
  31. IPAHAL_DRV_NAME " %s:%d " fmt, ## args); \
  32. IPA_IPC_LOGGING(ipa_get_ipc_logbuf_low(), \
  33. IPAHAL_DRV_NAME " %s:%d " fmt, ## args); \
  34. } while (0)
  35. #define IPAHAL_ERR_RL(fmt, args...) \
  36. do { \
  37. pr_err_ratelimited_ipa(IPAHAL_DRV_NAME " %s:%d " fmt, \
  38. __func__, __LINE__, ## args); \
  39. IPA_IPC_LOGGING(ipa_get_ipc_logbuf(), \
  40. IPAHAL_DRV_NAME " %s:%d " fmt, ## args); \
  41. IPA_IPC_LOGGING(ipa_get_ipc_logbuf_low(), \
  42. IPAHAL_DRV_NAME " %s:%d " fmt, ## args); \
  43. } while (0)
  44. #define IPAHAL_DBG_REG(fmt, args...) \
  45. do { \
  46. pr_err(fmt, ## args); \
  47. IPA_IPC_LOGGING(ipahal_ctx->regdumpbuf, \
  48. " %s:%d " fmt, ## args); \
  49. } while (0)
  50. #define IPAHAL_DBG_REG_IPC_ONLY(fmt, args...) \
  51. IPA_IPC_LOGGING(ipahal_ctx->regdumpbuf, " %s:%d " fmt, ## args)
  52. #define IPAHAL_MEM_ALLOC(__size, __is_atomic_ctx) \
  53. (kzalloc((__size), ((__is_atomic_ctx) ? GFP_ATOMIC : GFP_KERNEL)))
  54. #define IPAHAL_IPC_LOG_PAGES 50
  55. #define IPAHAL_PKT_STATUS_FLTRT_RULE_MISS_ID 0x3ff
  56. /*
  57. * struct ipahal_context - HAL global context data
  58. * @hw_type: IPA H/W type/version.
  59. * @base: Base address to be used for accessing IPA memory. This is
  60. * I/O memory mapped address.
  61. * Controlled by debugfs. default is off
  62. * @dent: Debugfs folder dir entry
  63. * @ipa_pdev: IPA Platform Device. Will be used for DMA memory
  64. * @empty_fltrt_tbl: Empty table to be used at tables init.
  65. */
  66. struct ipahal_context {
  67. enum ipa_hw_type hw_type;
  68. void __iomem *base;
  69. struct dentry *dent;
  70. struct device *ipa_pdev;
  71. struct ipa_mem_buffer empty_fltrt_tbl;
  72. void *regdumpbuf;
  73. };
  74. extern struct ipahal_context *ipahal_ctx;
  75. /* Immediate commands H/W structures */
  76. /*
  77. * struct ipa_imm_cmd_hw_ip_v4_filter_init - IP_V4_FILTER_INIT command payload
  78. * in H/W format.
  79. * Inits IPv4 filter block.
  80. * @hash_rules_addr: Addr in system mem where ipv4 hashable flt rules starts
  81. * @hash_rules_size: Size in bytes of the hashable tbl to cpy to local mem
  82. * @hash_local_addr: Addr in shared mem where ipv4 hashable flt tbl should
  83. * be copied to
  84. * @nhash_rules_size: Size in bytes of the non-hashable tbl to cpy to local mem
  85. * @nhash_local_addr: Addr in shared mem where ipv4 non-hashable flt tbl should
  86. * be copied to
  87. * @rsvd: reserved
  88. * @nhash_rules_addr: Addr in sys mem where ipv4 non-hashable flt tbl starts
  89. */
  90. struct ipa_imm_cmd_hw_ip_v4_filter_init {
  91. u64 hash_rules_addr:64;
  92. u64 hash_rules_size:12;
  93. u64 hash_local_addr:16;
  94. u64 nhash_rules_size:12;
  95. u64 nhash_local_addr:16;
  96. u64 rsvd:8;
  97. u64 nhash_rules_addr:64;
  98. };
  99. /*
  100. * struct ipa_imm_cmd_hw_ip_v6_filter_init - IP_V6_FILTER_INIT command payload
  101. * in H/W format.
  102. * Inits IPv6 filter block.
  103. * @hash_rules_addr: Addr in system mem where ipv6 hashable flt rules starts
  104. * @hash_rules_size: Size in bytes of the hashable tbl to cpy to local mem
  105. * @hash_local_addr: Addr in shared mem where ipv6 hashable flt tbl should
  106. * be copied to
  107. * @nhash_rules_size: Size in bytes of the non-hashable tbl to cpy to local mem
  108. * @nhash_local_addr: Addr in shared mem where ipv6 non-hashable flt tbl should
  109. * be copied to
  110. * @rsvd: reserved
  111. * @nhash_rules_addr: Addr in sys mem where ipv6 non-hashable flt tbl starts
  112. */
  113. struct ipa_imm_cmd_hw_ip_v6_filter_init {
  114. u64 hash_rules_addr:64;
  115. u64 hash_rules_size:12;
  116. u64 hash_local_addr:16;
  117. u64 nhash_rules_size:12;
  118. u64 nhash_local_addr:16;
  119. u64 rsvd:8;
  120. u64 nhash_rules_addr:64;
  121. };
  122. /*
  123. * struct ipa_imm_cmd_hw_ip_v4_nat_init - IP_V4_NAT_INIT command payload
  124. * in H/W format.
  125. * Inits IPv4 NAT block. Initiate NAT table with it dimensions, location
  126. * cache address and other related parameters.
  127. * @ipv4_rules_addr: Addr in sys/shared mem where ipv4 NAT rules start
  128. * @ipv4_expansion_rules_addr: Addr in sys/shared mem where expansion NAT
  129. * table starts. IPv4 NAT rules that result in hash collision are located
  130. * in this table.
  131. * @index_table_addr: Addr in sys/shared mem where index table, which points
  132. * to NAT table starts
  133. * @index_table_expansion_addr: Addr in sys/shared mem where expansion index
  134. * table starts
  135. * @table_index: For future support of multiple NAT tables
  136. * @rsvd1: reserved
  137. * @ipv4_rules_addr_type: ipv4_rules_addr in sys or shared mem
  138. * @ipv4_expansion_rules_addr_type: ipv4_expansion_rules_addr in
  139. * sys or shared mem
  140. * @index_table_addr_type: index_table_addr in sys or shared mem
  141. * @index_table_expansion_addr_type: index_table_expansion_addr in
  142. * sys or shared mem
  143. * @size_base_tables: Num of entries in NAT tbl and idx tbl (each)
  144. * @size_expansion_tables: Num of entries in NAT expansion tbl and expansion
  145. * idx tbl (each)
  146. * @rsvd2: reserved
  147. * @public_addr_info: Public IP addresses info suitable to the IPA H/W version
  148. * IPA H/W >= 4.0 - PDN config table offset in SMEM
  149. * IPA H/W < 4.0 - The public IP address
  150. */
  151. struct ipa_imm_cmd_hw_ip_v4_nat_init {
  152. u64 ipv4_rules_addr:64;
  153. u64 ipv4_expansion_rules_addr:64;
  154. u64 index_table_addr:64;
  155. u64 index_table_expansion_addr:64;
  156. u64 table_index:3;
  157. u64 rsvd1:1;
  158. u64 ipv4_rules_addr_type:1;
  159. u64 ipv4_expansion_rules_addr_type:1;
  160. u64 index_table_addr_type:1;
  161. u64 index_table_expansion_addr_type:1;
  162. u64 size_base_tables:12;
  163. u64 size_expansion_tables:10;
  164. u64 rsvd2:2;
  165. u64 public_addr_info:32;
  166. };
  167. /*
  168. * struct ipa_imm_cmd_hw_ip_v6_ct_init - IP_V6_CONN_TRACK_INIT command payload
  169. * in H/W format.
  170. * Inits IPv6CT block. Initiate IPv6CT table with it dimensions, location
  171. * cache address and other related parameters.
  172. * @table_addr: Address in sys/shared mem where IPv6CT rules start
  173. * @expansion_table_addr: Address in sys/shared mem where IPv6CT expansion
  174. * table starts. IPv6CT rules that result in hash collision are located
  175. * in this table.
  176. * @table_index: For future support of multiple IPv6CT tables
  177. * @rsvd1: reserved
  178. * @table_addr_type: table_addr in sys or shared mem
  179. * @expansion_table_addr_type: expansion_table_addr in sys or shared mem
  180. * @rsvd2: reserved
  181. * @size_base_tables: Number of entries in IPv6CT table
  182. * @size_expansion_tables: Number of entries in IPv6CT expansion table
  183. * @rsvd3: reserved
  184. */
  185. struct ipa_imm_cmd_hw_ip_v6_ct_init {
  186. u64 table_addr:64;
  187. u64 expansion_table_addr:64;
  188. u64 table_index:3;
  189. u64 rsvd1:1;
  190. u64 table_addr_type:1;
  191. u64 expansion_table_addr_type:1;
  192. u64 rsvd2:2;
  193. u64 size_base_table:12;
  194. u64 size_expansion_table:10;
  195. u64 rsvd3:34;
  196. };
  197. /*
  198. * struct ipa_imm_cmd_hw_ip_v4_routing_init - IP_V4_ROUTING_INIT command payload
  199. * in H/W format.
  200. * Inits IPv4 routing table/structure - with the rules and other related params
  201. * @hash_rules_addr: Addr in system mem where ipv4 hashable rt rules starts
  202. * @hash_rules_size: Size in bytes of the hashable tbl to cpy to local mem
  203. * @hash_local_addr: Addr in shared mem where ipv4 hashable rt tbl should
  204. * be copied to
  205. * @nhash_rules_size: Size in bytes of the non-hashable tbl to cpy to local mem
  206. * @nhash_local_addr: Addr in shared mem where ipv4 non-hashable rt tbl should
  207. * be copied to
  208. * @rsvd: reserved
  209. * @nhash_rules_addr: Addr in sys mem where ipv4 non-hashable rt tbl starts
  210. */
  211. struct ipa_imm_cmd_hw_ip_v4_routing_init {
  212. u64 hash_rules_addr:64;
  213. u64 hash_rules_size:12;
  214. u64 hash_local_addr:16;
  215. u64 nhash_rules_size:12;
  216. u64 nhash_local_addr:16;
  217. u64 rsvd:8;
  218. u64 nhash_rules_addr:64;
  219. };
  220. /*
  221. * struct ipa_imm_cmd_hw_ip_v6_routing_init - IP_V6_ROUTING_INIT command payload
  222. * in H/W format.
  223. * Inits IPv6 routing table/structure - with the rules and other related params
  224. * @hash_rules_addr: Addr in system mem where ipv6 hashable rt rules starts
  225. * @hash_rules_size: Size in bytes of the hashable tbl to cpy to local mem
  226. * @hash_local_addr: Addr in shared mem where ipv6 hashable rt tbl should
  227. * be copied to
  228. * @nhash_rules_size: Size in bytes of the non-hashable tbl to cpy to local mem
  229. * @nhash_local_addr: Addr in shared mem where ipv6 non-hashable rt tbl should
  230. * be copied to
  231. * @rsvd: reserved
  232. * @nhash_rules_addr: Addr in sys mem where ipv6 non-hashable rt tbl starts
  233. */
  234. struct ipa_imm_cmd_hw_ip_v6_routing_init {
  235. u64 hash_rules_addr:64;
  236. u64 hash_rules_size:12;
  237. u64 hash_local_addr:16;
  238. u64 nhash_rules_size:12;
  239. u64 nhash_local_addr:16;
  240. u64 rsvd:8;
  241. u64 nhash_rules_addr:64;
  242. };
  243. /*
  244. * struct ipa_imm_cmd_hw_hdr_init_local - HDR_INIT_LOCAL command payload
  245. * in H/W format.
  246. * Inits hdr table within local mem with the hdrs and their length.
  247. * @hdr_table_addr: Word address in sys mem where the table starts (SRC)
  248. * @size_hdr_table: Size of the above (in bytes)
  249. * @hdr_addr: header address in IPA sram (used as DST for memory copy)
  250. * @rsvd: reserved
  251. */
  252. struct ipa_imm_cmd_hw_hdr_init_local {
  253. u64 hdr_table_addr:64;
  254. u64 size_hdr_table:12;
  255. u64 hdr_addr:16;
  256. u64 rsvd:4;
  257. };
  258. /*
  259. * struct ipa_imm_cmd_hw_nat_dma - NAT_DMA command payload
  260. * in H/W format
  261. * Perform DMA operation on NAT related mem addressess. Copy data into
  262. * different locations within NAT associated tbls. (For add/remove NAT rules)
  263. * @table_index: NAT tbl index. Defines the NAT tbl on which to perform DMA op.
  264. * @rsvd1: reserved
  265. * @base_addr: Base addr to which the DMA operation should be performed.
  266. * @rsvd2: reserved
  267. * @offset: offset in bytes from base addr to write 'data' to
  268. * @data: data to be written
  269. * @rsvd3: reserved
  270. */
  271. struct ipa_imm_cmd_hw_nat_dma {
  272. u64 table_index:3;
  273. u64 rsvd1:1;
  274. u64 base_addr:2;
  275. u64 rsvd2:2;
  276. u64 offset:32;
  277. u64 data:16;
  278. u64 rsvd3:8;
  279. };
  280. /*
  281. * struct ipa_imm_cmd_hw_table_dma_ipav4 - TABLE_DMA command payload
  282. * in H/W format
  283. * Perform DMA operation on NAT and ipv6 connection tracking related mem
  284. * addresses. Copy data into different locations within NAT associated tbls
  285. * (For add/remove NAT rules)
  286. * @table_index: NAT tbl index. Defines the NAT tbl on which to perform DMA op.
  287. * @rsvd1: reserved
  288. * @base_addr: Base addr to which the DMA operation should be performed.
  289. * @rsvd2: reserved
  290. * @offset: offset in bytes from base addr to write 'data' to
  291. * @data: data to be written
  292. * @rsvd3: reserved
  293. */
  294. struct ipa_imm_cmd_hw_table_dma_ipav4 {
  295. u64 table_index : 3;
  296. u64 rsvd1 : 1;
  297. u64 base_addr : 3;
  298. u64 rsvd2 : 1;
  299. u64 offset : 32;
  300. u64 data : 16;
  301. u64 rsvd3 : 8;
  302. };
  303. /*
  304. * struct ipa_imm_cmd_hw_hdr_init_system - HDR_INIT_SYSTEM command payload
  305. * in H/W format.
  306. * Inits hdr table within sys mem with the hdrs and their length.
  307. * @hdr_table_addr: Word address in system memory where the hdrs tbl starts.
  308. */
  309. struct ipa_imm_cmd_hw_hdr_init_system {
  310. u64 hdr_table_addr:64;
  311. };
  312. /*
  313. * struct ipa_imm_cmd_hw_ip_packet_init - IP_PACKET_INIT command payload
  314. * in H/W format.
  315. * Configuration for specific IP pkt. Shall be called prior to an IP pkt
  316. * data. Pkt will not go through IP pkt processing.
  317. * @destination_pipe_index: Destination pipe index (in case routing
  318. * is enabled, this field will overwrite the rt rule)
  319. * @rsvd: reserved
  320. */
  321. struct ipa_imm_cmd_hw_ip_packet_init {
  322. u64 destination_pipe_index:5;
  323. u64 rsv1:59;
  324. };
  325. /*
  326. * struct ipa_imm_cmd_hw_register_write - REGISTER_WRITE command payload
  327. * in H/W format.
  328. * Write value to register. Allows reg changes to be synced with data packet
  329. * and other immediate command. Can be used to access the sram
  330. * @sw_rsvd: Ignored by H/W. May be used by S/W
  331. * @skip_pipeline_clear: 0 to wait until IPA pipeline is clear. 1 don't wait
  332. * @offset: offset from IPA base address - Lower 16bit of the IPA reg addr
  333. * @value: value to write to register
  334. * @value_mask: mask specifying which value bits to write to the register
  335. * @pipeline_clear_options: options for pipeline to clear
  336. * 0: HPS - no pkt inside HPS (not grp specific)
  337. * 1: source group - The immediate cmd src grp does not use any pkt ctxs
  338. * 2: Wait until no pkt reside inside IPA pipeline
  339. * 3: reserved
  340. * @rsvd: reserved - should be set to zero
  341. */
  342. struct ipa_imm_cmd_hw_register_write {
  343. u64 sw_rsvd:15;
  344. u64 skip_pipeline_clear:1;
  345. u64 offset:16;
  346. u64 value:32;
  347. u64 value_mask:32;
  348. u64 pipeline_clear_options:2;
  349. u64 rsvd:30;
  350. };
  351. /*
  352. * struct ipa_imm_cmd_hw_register_write - REGISTER_WRITE command payload
  353. * in H/W format.
  354. * Write value to register. Allows reg changes to be synced with data packet
  355. * and other immediate command. Can be used to access the sram
  356. * @sw_rsvd: Ignored by H/W. May be used by S/W
  357. * @offset_high: high bits of the Offset field - bits 17-20
  358. * @rsvd: reserved - should be set to zero
  359. * @offset: offset from IPA base address - Lower 16bit of the IPA reg addr
  360. * @value: value to write to register
  361. * @value_mask: mask specifying which value bits to write to the register
  362. * @rsvd2: reserved - should be set to zero
  363. */
  364. struct ipa_imm_cmd_hw_register_write_v_4_0 {
  365. u64 sw_rsvd:11;
  366. u64 offset_high:4;
  367. u64 rsvd:1;
  368. u64 offset:16;
  369. u64 value:32;
  370. u64 value_mask:32;
  371. u64 rsvd2:32;
  372. };
  373. /*
  374. * struct ipa_imm_cmd_hw_dma_shared_mem - DMA_SHARED_MEM command payload
  375. * in H/W format.
  376. * Perform mem copy into or out of the SW area of IPA local mem
  377. * @sw_rsvd: Ignored by H/W. My be used by S/W
  378. * @size: Size in bytes of data to copy. Expected size is up to 2K bytes
  379. * @local_addr: Address in IPA local memory
  380. * @direction: Read or write?
  381. * 0: IPA write, Write to local address from system address
  382. * 1: IPA read, Read from local address to system address
  383. * @skip_pipeline_clear: 0 to wait until IPA pipeline is clear. 1 don't wait
  384. * @pipeline_clear_options: options for pipeline to clear
  385. * 0: HPS - no pkt inside HPS (not grp specific)
  386. * 1: source group - The immediate cmd src grp does npt use any pkt ctxs
  387. * 2: Wait until no pkt reside inside IPA pipeline
  388. * 3: reserved
  389. * @rsvd: reserved - should be set to zero
  390. * @system_addr: Address in system memory
  391. */
  392. struct ipa_imm_cmd_hw_dma_shared_mem {
  393. u64 sw_rsvd:16;
  394. u64 size:16;
  395. u64 local_addr:16;
  396. u64 direction:1;
  397. u64 skip_pipeline_clear:1;
  398. u64 pipeline_clear_options:2;
  399. u64 rsvd:12;
  400. u64 system_addr:64;
  401. };
  402. /*
  403. * struct ipa_imm_cmd_hw_dma_shared_mem - DMA_SHARED_MEM command payload
  404. * in H/W format.
  405. * Perform mem copy into or out of the SW area of IPA local mem
  406. * @sw_rsvd: Ignored by H/W. My be used by S/W
  407. * @size: Size in bytes of data to copy. Expected size is up to 2K bytes
  408. * @clear_after_read: Clear local memory at the end of a read operation allows
  409. * atomic read and clear if HPS is clear. Ignore for writes.
  410. * @local_addr: Address in IPA local memory
  411. * @direction: Read or write?
  412. * 0: IPA write, Write to local address from system address
  413. * 1: IPA read, Read from local address to system address
  414. * @rsvd: reserved - should be set to zero
  415. * @system_addr: Address in system memory
  416. */
  417. struct ipa_imm_cmd_hw_dma_shared_mem_v_4_0 {
  418. u64 sw_rsvd:15;
  419. u64 clear_after_read:1;
  420. u64 size:16;
  421. u64 local_addr:16;
  422. u64 direction:1;
  423. u64 rsvd:15;
  424. u64 system_addr:64;
  425. };
  426. /*
  427. * struct ipa_imm_cmd_hw_ip_packet_tag_status -
  428. * IP_PACKET_TAG_STATUS command payload in H/W format.
  429. * This cmd is used for to allow SW to track HW processing by setting a TAG
  430. * value that is passed back to SW inside Packet Status information.
  431. * TAG info will be provided as part of Packet Status info generated for
  432. * the next pkt transferred over the pipe.
  433. * This immediate command must be followed by a packet in the same transfer.
  434. * @sw_rsvd: Ignored by H/W. My be used by S/W
  435. * @tag: Tag that is provided back to SW
  436. */
  437. struct ipa_imm_cmd_hw_ip_packet_tag_status {
  438. u64 sw_rsvd:16;
  439. u64 tag:48;
  440. };
  441. /*
  442. * struct ipa_imm_cmd_hw_dma_task_32b_addr -
  443. * IPA_DMA_TASK_32B_ADDR command payload in H/W format.
  444. * Used by clients using 32bit addresses. Used to perform DMA operation on
  445. * multiple descriptors.
  446. * The Opcode is dynamic, where it holds the number of buffer to process
  447. * @sw_rsvd: Ignored by H/W. My be used by S/W
  448. * @cmplt: Complete flag: When asserted IPA will interrupt SW when the entire
  449. * DMA related data was completely xfered to its destination.
  450. * @eof: Enf Of Frame flag: When asserted IPA will assert the EOT to the
  451. * dest client. This is used used for aggr sequence
  452. * @flsh: Flush flag: When asserted, pkt will go through the IPA blocks but
  453. * will not be xfered to dest client but rather will be discarded
  454. * @lock: Lock pipe flag: When asserted, IPA will stop processing descriptors
  455. * from other EPs in the same src grp (RX queue)
  456. * @unlock: Unlock pipe flag: When asserted, IPA will stop exclusively
  457. * servicing current EP out of the src EPs of the grp (RX queue)
  458. * @size1: Size of buffer1 data
  459. * @addr1: Pointer to buffer1 data
  460. * @packet_size: Total packet size. If a pkt send using multiple DMA_TASKs,
  461. * only the first one needs to have this field set. It will be ignored
  462. * in subsequent DMA_TASKs until the packet ends (EOT). First DMA_TASK
  463. * must contain this field (2 or more buffers) or EOT.
  464. */
  465. struct ipa_imm_cmd_hw_dma_task_32b_addr {
  466. u64 sw_rsvd:11;
  467. u64 cmplt:1;
  468. u64 eof:1;
  469. u64 flsh:1;
  470. u64 lock:1;
  471. u64 unlock:1;
  472. u64 size1:16;
  473. u64 addr1:32;
  474. u64 packet_size:16;
  475. };
  476. /* IPA Status packet H/W structures and info */
  477. /*
  478. * struct ipa_status_pkt_hw - IPA status packet payload in H/W format.
  479. * This structure describes the status packet H/W structure for the
  480. * following statuses: IPA_STATUS_PACKET, IPA_STATUS_DROPPED_PACKET,
  481. * IPA_STATUS_SUSPENDED_PACKET.
  482. * Other statuses types has different status packet structure.
  483. * @status_opcode: The Type of the status (Opcode).
  484. * @exception: (not bitmask) - the first exception that took place.
  485. * In case of exception, src endp and pkt len are always valid.
  486. * @status_mask: Bit mask specifying on which H/W blocks the pkt was processed.
  487. * @pkt_len: Pkt pyld len including hdr, include retained hdr if used. Does
  488. * not include padding or checksum trailer len.
  489. * @endp_src_idx: Source end point index.
  490. * @rsvd1: reserved
  491. * @endp_dest_idx: Destination end point index.
  492. * Not valid in case of exception
  493. * @rsvd2: reserved
  494. * @metadata: meta data value used by packet
  495. * @flt_local: Filter table location flag: Does matching flt rule belongs to
  496. * flt tbl that resides in lcl memory? (if not, then system mem)
  497. * @flt_hash: Filter hash hit flag: Does matching flt rule was in hash tbl?
  498. * @flt_global: Global filter rule flag: Does matching flt rule belongs to
  499. * the global flt tbl? (if not, then the per endp tables)
  500. * @flt_ret_hdr: Retain header in filter rule flag: Does matching flt rule
  501. * specifies to retain header?
  502. * Starting IPA4.5, this will be true only if packet has L2 header.
  503. * @flt_rule_id: The ID of the matching filter rule. This info can be combined
  504. * with endp_src_idx to locate the exact rule. ID=0x3FF reserved to specify
  505. * flt miss. In case of miss, all flt info to be ignored
  506. * @rt_local: Route table location flag: Does matching rt rule belongs to
  507. * rt tbl that resides in lcl memory? (if not, then system mem)
  508. * @rt_hash: Route hash hit flag: Does matching rt rule was in hash tbl?
  509. * @ucp: UC Processing flag.
  510. * @rt_tbl_idx: Index of rt tbl that contains the rule on which was a match
  511. * @rt_rule_id: The ID of the matching rt rule. This info can be combined
  512. * with rt_tbl_idx to locate the exact rule. ID=0x3FF reserved to specify
  513. * rt miss. In case of miss, all rt info to be ignored
  514. * @nat_hit: NAT hit flag: Was their NAT hit?
  515. * @nat_entry_idx: Index of the NAT entry used of NAT processing
  516. * @nat_type: Defines the type of the NAT operation:
  517. * 00: No NAT
  518. * 01: Source NAT
  519. * 10: Destination NAT
  520. * 11: Reserved
  521. * @tag_info: S/W defined value provided via immediate command
  522. * @seq_num: Per source endp unique packet sequence number
  523. * @time_of_day_ctr: running counter from IPA clock
  524. * @hdr_local: Header table location flag: In header insertion, was the header
  525. * taken from the table resides in local memory? (If no, then system mem)
  526. * @hdr_offset: Offset of used header in the header table
  527. * @frag_hit: Frag hit flag: Was their frag rule hit in H/W frag table?
  528. * @frag_rule: Frag rule index in H/W frag table in case of frag hit
  529. * @hw_specific: H/W specific reserved value
  530. */
  531. struct ipa_pkt_status_hw {
  532. u64 status_opcode:8;
  533. u64 exception:8;
  534. u64 status_mask:16;
  535. u64 pkt_len:16;
  536. u64 endp_src_idx:5;
  537. u64 rsvd1:3;
  538. u64 endp_dest_idx:5;
  539. u64 rsvd2:3;
  540. u64 metadata:32;
  541. u64 flt_local:1;
  542. u64 flt_hash:1;
  543. u64 flt_global:1;
  544. u64 flt_ret_hdr:1;
  545. u64 flt_rule_id:10;
  546. u64 rt_local:1;
  547. u64 rt_hash:1;
  548. u64 ucp:1;
  549. u64 rt_tbl_idx:5;
  550. u64 rt_rule_id:10;
  551. u64 nat_hit:1;
  552. u64 nat_entry_idx:13;
  553. u64 nat_type:2;
  554. u64 tag_info:48;
  555. u64 seq_num:8;
  556. u64 time_of_day_ctr:24;
  557. u64 hdr_local:1;
  558. u64 hdr_offset:10;
  559. u64 frag_hit:1;
  560. u64 frag_rule:4;
  561. u64 hw_specific:16;
  562. };
  563. /* Size of H/W Packet Status */
  564. #define IPA3_0_PKT_STATUS_SIZE 32
  565. /* Headers and processing context H/W structures and definitions */
  566. /* uCP command numbers */
  567. #define IPA_HDR_UCP_802_3_TO_802_3 6
  568. #define IPA_HDR_UCP_802_3_TO_ETHII 7
  569. #define IPA_HDR_UCP_ETHII_TO_802_3 8
  570. #define IPA_HDR_UCP_ETHII_TO_ETHII 9
  571. #define IPA_HDR_UCP_L2TP_HEADER_ADD 10
  572. #define IPA_HDR_UCP_L2TP_HEADER_REMOVE 11
  573. /* Processing context TLV type */
  574. #define IPA_PROC_CTX_TLV_TYPE_END 0
  575. #define IPA_PROC_CTX_TLV_TYPE_HDR_ADD 1
  576. #define IPA_PROC_CTX_TLV_TYPE_PROC_CMD 3
  577. /**
  578. * struct ipa_hw_hdr_proc_ctx_tlv -
  579. * HW structure of IPA processing context header - TLV part
  580. * @type: 0 - end type
  581. * 1 - header addition type
  582. * 3 - processing command type
  583. * @length: number of bytes after tlv
  584. * for type:
  585. * 0 - needs to be 0
  586. * 1 - header addition length
  587. * 3 - number of 32B including type and length.
  588. * @value: specific value for type
  589. * for type:
  590. * 0 - needs to be 0
  591. * 1 - header length
  592. * 3 - command ID (see IPA_HDR_UCP_* definitions)
  593. */
  594. struct ipa_hw_hdr_proc_ctx_tlv {
  595. u32 type:8;
  596. u32 length:8;
  597. u32 value:16;
  598. };
  599. /**
  600. * struct ipa_hw_hdr_proc_ctx_hdr_add -
  601. * HW structure of IPA processing context - add header tlv
  602. * @tlv: IPA processing context TLV
  603. * @hdr_addr: processing context header address
  604. */
  605. struct ipa_hw_hdr_proc_ctx_hdr_add {
  606. struct ipa_hw_hdr_proc_ctx_tlv tlv;
  607. u32 hdr_addr;
  608. u32 hdr_addr_hi;
  609. };
  610. /**
  611. * struct ipa_hw_hdr_proc_ctx_l2tp_add_hdr -
  612. * HW structure of IPA processing context - add l2tp header tlv
  613. * @tlv: IPA processing context TLV
  614. * @l2tp_params: l2tp parameters
  615. */
  616. struct ipa_hw_hdr_proc_ctx_l2tp_add_hdr {
  617. struct ipa_hw_hdr_proc_ctx_tlv tlv;
  618. struct ipa_l2tp_header_add_procparams l2tp_params;
  619. };
  620. /**
  621. * struct ipa_hw_hdr_proc_ctx_l2tp_remove_hdr -
  622. * HW structure of IPA processing context - remove l2tp header tlv
  623. * @tlv: IPA processing context TLV
  624. * @l2tp_params: l2tp parameters
  625. */
  626. struct ipa_hw_hdr_proc_ctx_l2tp_remove_hdr {
  627. struct ipa_hw_hdr_proc_ctx_tlv tlv;
  628. struct ipa_l2tp_header_remove_procparams l2tp_params;
  629. };
  630. /**
  631. * struct ipa_hw_hdr_proc_ctx_add_hdr_seq -
  632. * IPA processing context header - add header sequence
  633. * @hdr_add: add header command
  634. * @end: tlv end command (cmd.type must be 0)
  635. */
  636. struct ipa_hw_hdr_proc_ctx_add_hdr_seq {
  637. struct ipa_hw_hdr_proc_ctx_hdr_add hdr_add;
  638. struct ipa_hw_hdr_proc_ctx_tlv end;
  639. };
  640. /**
  641. * struct ipa_hw_hdr_proc_ctx_add_hdr_cmd_seq -
  642. * IPA processing context header - process command sequence
  643. * @hdr_add: add header command
  644. * @cmd: tlv processing command (cmd.type must be 3)
  645. * @end: tlv end command (cmd.type must be 0)
  646. */
  647. struct ipa_hw_hdr_proc_ctx_add_hdr_cmd_seq {
  648. struct ipa_hw_hdr_proc_ctx_hdr_add hdr_add;
  649. struct ipa_hw_hdr_proc_ctx_tlv cmd;
  650. struct ipa_hw_hdr_proc_ctx_tlv end;
  651. };
  652. /**
  653. * struct ipa_hw_hdr_proc_ctx_add_l2tp_hdr_cmd_seq -
  654. * IPA processing context header - process command sequence
  655. * @hdr_add: add header command
  656. * @l2tp_params: l2tp params for header addition
  657. * @end: tlv end command (cmd.type must be 0)
  658. */
  659. struct ipa_hw_hdr_proc_ctx_add_l2tp_hdr_cmd_seq {
  660. struct ipa_hw_hdr_proc_ctx_hdr_add hdr_add;
  661. struct ipa_hw_hdr_proc_ctx_l2tp_add_hdr l2tp_params;
  662. struct ipa_hw_hdr_proc_ctx_tlv end;
  663. };
  664. /**
  665. * struct ipa_hw_hdr_proc_ctx_remove_l2tp_hdr_cmd_seq -
  666. * IPA processing context header - process command sequence
  667. * @hdr_add: add header command
  668. * @l2tp_params: l2tp params for header removal
  669. * @end: tlv end command (cmd.type must be 0)
  670. */
  671. struct ipa_hw_hdr_proc_ctx_remove_l2tp_hdr_cmd_seq {
  672. struct ipa_hw_hdr_proc_ctx_hdr_add hdr_add;
  673. struct ipa_hw_hdr_proc_ctx_l2tp_remove_hdr l2tp_params;
  674. struct ipa_hw_hdr_proc_ctx_tlv end;
  675. };
  676. #endif /* _IPAHAL_I_H_ */