ipa_uc_offload_i.h 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2016-2019, The Linux Foundation. All rights reserved.
  4. */
  5. #ifndef _IPA_UC_OFFLOAD_I_H_
  6. #define _IPA_UC_OFFLOAD_I_H_
  7. #include <linux/ipa.h>
  8. #include "ipa_i.h"
  9. /*
  10. * Neutrino protocol related data structures
  11. */
  12. #define IPA_UC_MAX_NTN_TX_CHANNELS 1
  13. #define IPA_UC_MAX_NTN_RX_CHANNELS 1
  14. #define IPA_NTN_TX_DIR 1
  15. #define IPA_NTN_RX_DIR 2
  16. #define MAX_CH_STATS_SUPPORTED 5
  17. #define DIR_CONSUMER 0
  18. #define DIR_PRODUCER 1
  19. #define MAX_AQC_CHANNELS 2
  20. #define MAX_11AD_CHANNELS 5
  21. #define MAX_WDI2_CHANNELS 2
  22. #define MAX_WDI3_CHANNELS 2
  23. #define MAX_MHIP_CHANNELS 4
  24. #define MAX_USB_CHANNELS 2
  25. /**
  26. * @brief Enum value determined based on the feature it
  27. * corresponds to
  28. * +----------------+----------------+
  29. * | 3 bits | 5 bits |
  30. * +----------------+----------------+
  31. * | HW_FEATURE | OPCODE |
  32. * +----------------+----------------+
  33. *
  34. */
  35. #define FEATURE_ENUM_VAL(feature, opcode) ((feature << 5) | opcode)
  36. #define EXTRACT_UC_FEATURE(value) (value >> 5)
  37. #define IPA_HW_NUM_FEATURES 0x8
  38. /**
  39. * enum ipa3_hw_features - Values that represent the features supported
  40. * in IPA HW
  41. * @IPA_HW_FEATURE_COMMON : Feature related to common operation of IPA HW
  42. * @IPA_HW_FEATURE_MHI : Feature related to MHI operation in IPA HW
  43. * @IPA_HW_FEATURE_POWER_COLLAPSE: Feature related to IPA Power collapse
  44. * @IPA_HW_FEATURE_WDI : Feature related to WDI operation in IPA HW
  45. * @IPA_HW_FEATURE_NTN : Feature related to NTN operation in IPA HW
  46. * @IPA_HW_FEATURE_OFFLOAD : Feature related to several protocols operation in
  47. * IPA HW. use protocol field to
  48. * determine (e.g. IPA_HW_PROTOCOL_11ad).
  49. */
  50. enum ipa3_hw_features {
  51. IPA_HW_FEATURE_COMMON = 0x0,
  52. IPA_HW_FEATURE_MHI = 0x1,
  53. IPA_HW_FEATURE_POWER_COLLAPSE = 0x2,
  54. IPA_HW_FEATURE_WDI = 0x3,
  55. IPA_HW_FEATURE_ZIP = 0x4,
  56. IPA_HW_FEATURE_NTN = 0x5,
  57. IPA_HW_FEATURE_OFFLOAD = 0x6,
  58. IPA_HW_FEATURE_MAX = IPA_HW_NUM_FEATURES
  59. };
  60. /**
  61. * enum ipa4_hw_protocol - Values that represent the protocols supported
  62. * in IPA HW when using the IPA_HW_FEATURE_OFFLOAD feature.
  63. * @IPA_HW_FEATURE_COMMON : protocol related to common operation of IPA HW
  64. * @IPA_HW_PROTOCOL_AQC : protocol related to AQC operation in IPA HW
  65. * @IPA_HW_PROTOCOL_11ad: protocol related to 11ad operation in IPA HW
  66. * @IPA_HW_PROTOCOL_WDI : protocol related to WDI operation in IPA HW
  67. * @IPA_HW_PROTOCOL_WDI3: protocol related to WDI3 operation in IPA HW
  68. * @IPA_HW_PROTOCOL_ETH : protocol related to ETH operation in IPA HW
  69. * @IPA_HW_PROTOCOL_MHIP: protocol related to MHIP operation in IPA HW
  70. * @IPA_HW_PROTOCOL_USB : protocol related to USB operation in IPA HW
  71. */
  72. enum ipa4_hw_protocol {
  73. IPA_HW_PROTOCOL_COMMON = 0x0,
  74. IPA_HW_PROTOCOL_AQC = 0x1,
  75. IPA_HW_PROTOCOL_11ad = 0x2,
  76. IPA_HW_PROTOCOL_WDI = 0x3,
  77. IPA_HW_PROTOCOL_WDI3 = 0x4,
  78. IPA_HW_PROTOCOL_ETH = 0x5,
  79. IPA_HW_PROTOCOL_MHIP = 0x6,
  80. IPA_HW_PROTOCOL_USB = 0x7,
  81. IPA_HW_PROTOCOL_MAX
  82. };
  83. /**
  84. * enum ipa3_hw_2_cpu_events - Values that represent HW event to be sent to CPU.
  85. * @IPA_HW_2_CPU_EVENT_NO_OP : No event present
  86. * @IPA_HW_2_CPU_EVENT_ERROR : Event specify a system error is detected by the
  87. * device
  88. * @IPA_HW_2_CPU_EVENT_LOG_INFO : Event providing logging specific information
  89. */
  90. enum ipa3_hw_2_cpu_events {
  91. IPA_HW_2_CPU_EVENT_NO_OP =
  92. FEATURE_ENUM_VAL(IPA_HW_FEATURE_COMMON, 0),
  93. IPA_HW_2_CPU_EVENT_ERROR =
  94. FEATURE_ENUM_VAL(IPA_HW_FEATURE_COMMON, 1),
  95. IPA_HW_2_CPU_EVENT_LOG_INFO =
  96. FEATURE_ENUM_VAL(IPA_HW_FEATURE_COMMON, 2),
  97. };
  98. /**
  99. * enum ipa3_hw_errors - Common error types.
  100. * @IPA_HW_ERROR_NONE : No error persists
  101. * @IPA_HW_INVALID_DOORBELL_ERROR : Invalid data read from doorbell
  102. * @IPA_HW_DMA_ERROR : Unexpected DMA error
  103. * @IPA_HW_FATAL_SYSTEM_ERROR : HW has crashed and requires reset.
  104. * @IPA_HW_INVALID_OPCODE : Invalid opcode sent
  105. * @IPA_HW_INVALID_PARAMS : Invalid params for the requested command
  106. * @IPA_HW_GSI_CH_NOT_EMPTY_FAILURE : GSI channel emptiness validation failed
  107. * @IPA_HW_CONS_STOP_FAILURE : NTN/ETH CONS stop failed
  108. * @IPA_HW_PROD_STOP_FAILURE : NTN/ETH PROD stop failed
  109. */
  110. enum ipa3_hw_errors {
  111. IPA_HW_ERROR_NONE =
  112. FEATURE_ENUM_VAL(IPA_HW_FEATURE_COMMON, 0),
  113. IPA_HW_INVALID_DOORBELL_ERROR =
  114. FEATURE_ENUM_VAL(IPA_HW_FEATURE_COMMON, 1),
  115. IPA_HW_DMA_ERROR =
  116. FEATURE_ENUM_VAL(IPA_HW_FEATURE_COMMON, 2),
  117. IPA_HW_FATAL_SYSTEM_ERROR =
  118. FEATURE_ENUM_VAL(IPA_HW_FEATURE_COMMON, 3),
  119. IPA_HW_INVALID_OPCODE =
  120. FEATURE_ENUM_VAL(IPA_HW_FEATURE_COMMON, 4),
  121. IPA_HW_INVALID_PARAMS =
  122. FEATURE_ENUM_VAL(IPA_HW_FEATURE_COMMON, 5),
  123. IPA_HW_CONS_DISABLE_CMD_GSI_STOP_FAILURE =
  124. FEATURE_ENUM_VAL(IPA_HW_FEATURE_COMMON, 6),
  125. IPA_HW_PROD_DISABLE_CMD_GSI_STOP_FAILURE =
  126. FEATURE_ENUM_VAL(IPA_HW_FEATURE_COMMON, 7),
  127. IPA_HW_GSI_CH_NOT_EMPTY_FAILURE =
  128. FEATURE_ENUM_VAL(IPA_HW_FEATURE_COMMON, 8),
  129. IPA_HW_CONS_STOP_FAILURE =
  130. FEATURE_ENUM_VAL(IPA_HW_FEATURE_COMMON, 9),
  131. IPA_HW_PROD_STOP_FAILURE =
  132. FEATURE_ENUM_VAL(IPA_HW_FEATURE_COMMON, 10)
  133. };
  134. /**
  135. * struct IpaHwSharedMemCommonMapping_t - Structure referring to the common
  136. * section in 128B shared memory located in offset zero of SW Partition in IPA
  137. * SRAM.
  138. * @cmdOp : CPU->HW command opcode. See IPA_CPU_2_HW_COMMANDS
  139. * @cmdParams : CPU->HW command parameter lower 32bit.
  140. * @cmdParams_hi : CPU->HW command parameter higher 32bit.
  141. * of parameters (immediate parameters) and point on structure in system memory
  142. * (in such case the address must be accessible for HW)
  143. * @responseOp : HW->CPU response opcode. See IPA_HW_2_CPU_RESPONSES
  144. * @responseParams : HW->CPU response parameter. The parameter filed can hold 32
  145. * bits of parameters (immediate parameters) and point on structure in system
  146. * memory
  147. * @eventOp : HW->CPU event opcode. See IPA_HW_2_CPU_EVENTS
  148. * @eventParams : HW->CPU event parameter. The parameter filed can hold 32
  149. * bits of parameters (immediate parameters) and point on
  150. * structure in system memory
  151. * @firstErrorAddress : Contains the address of first error-source on SNOC
  152. * @hwState : State of HW. The state carries information regarding the
  153. * error type.
  154. * @warningCounter : The warnings counter. The counter carries information
  155. * regarding non fatal errors in HW
  156. * @interfaceVersionCommon : The Common interface version as reported by HW
  157. * @responseParams_1: offset addr for uC stats
  158. *
  159. * The shared memory is used for communication between IPA HW and CPU.
  160. */
  161. struct IpaHwSharedMemCommonMapping_t {
  162. u8 cmdOp;
  163. u8 reserved_01;
  164. u16 reserved_03_02;
  165. u32 cmdParams;
  166. u32 cmdParams_hi;
  167. u8 responseOp;
  168. u8 reserved_0D;
  169. u16 reserved_0F_0E;
  170. u32 responseParams;
  171. u8 eventOp;
  172. u8 reserved_15;
  173. u16 reserved_17_16;
  174. u32 eventParams;
  175. u32 firstErrorAddress;
  176. u8 hwState;
  177. u8 warningCounter;
  178. u16 reserved_23_22;
  179. u16 interfaceVersionCommon;
  180. u16 reserved_27_26;
  181. u32 responseParams_1;
  182. } __packed;
  183. /**
  184. * union Ipa3HwFeatureInfoData_t - parameters for stats/config blob
  185. *
  186. * @offset : Location of a feature within the EventInfoData
  187. * @size : Size of the feature
  188. */
  189. union Ipa3HwFeatureInfoData_t {
  190. struct IpaHwFeatureInfoParams_t {
  191. u32 offset:16;
  192. u32 size:16;
  193. } __packed params;
  194. u32 raw32b;
  195. } __packed;
  196. /**
  197. * union IpaHwErrorEventData_t - HW->CPU Common Events
  198. * @errorType : Entered when a system error is detected by the HW. Type of
  199. * error is specified by IPA_HW_ERRORS
  200. * @reserved : Reserved
  201. */
  202. union IpaHwErrorEventData_t {
  203. struct IpaHwErrorEventParams_t {
  204. u32 errorType:8;
  205. u32 reserved:24;
  206. } __packed params;
  207. u32 raw32b;
  208. } __packed;
  209. /**
  210. * struct Ipa3HwEventInfoData_t - Structure holding the parameters for
  211. * statistics and config info
  212. *
  213. * @baseAddrOffset : Base Address Offset of the statistics or config
  214. * structure from IPA_WRAPPER_BASE
  215. * @Ipa3HwFeatureInfoData_t : Location and size of each feature within
  216. * the statistics or config structure
  217. *
  218. * @note Information about each feature in the featureInfo[]
  219. * array is populated at predefined indices per the IPA_HW_FEATURES
  220. * enum definition
  221. */
  222. struct Ipa3HwEventInfoData_t {
  223. u32 baseAddrOffset;
  224. union Ipa3HwFeatureInfoData_t featureInfo[IPA_HW_NUM_FEATURES];
  225. } __packed;
  226. /**
  227. * struct IpaHwEventLogInfoData_t - Structure holding the parameters for
  228. * IPA_HW_2_CPU_EVENT_LOG_INFO Event
  229. *
  230. * @protocolMask : Mask indicating the protocols enabled in HW.
  231. * Refer IPA_HW_FEATURE_MASK
  232. * @circBuffBaseAddrOffset : Base Address Offset of the Circular Event
  233. * Log Buffer structure
  234. * @statsInfo : Statistics related information
  235. * @configInfo : Configuration related information
  236. *
  237. * @note The offset location of this structure from IPA_WRAPPER_BASE
  238. * will be provided as Event Params for the IPA_HW_2_CPU_EVENT_LOG_INFO
  239. * Event
  240. */
  241. struct IpaHwEventLogInfoData_t {
  242. u32 protocolMask;
  243. u32 circBuffBaseAddrOffset;
  244. struct Ipa3HwEventInfoData_t statsInfo;
  245. struct Ipa3HwEventInfoData_t configInfo;
  246. } __packed;
  247. /**
  248. * struct ipa3_uc_ntn_ctx
  249. * @ntn_uc_stats_ofst: Neutrino stats offset
  250. * @ntn_uc_stats_mmio: Neutrino stats
  251. * @priv: private data of client
  252. * @uc_ready_cb: uc Ready cb
  253. */
  254. struct ipa3_uc_ntn_ctx {
  255. u32 ntn_uc_stats_ofst;
  256. struct Ipa3HwStatsNTNInfoData_t *ntn_uc_stats_mmio;
  257. void *priv;
  258. ipa_uc_ready_cb uc_ready_cb;
  259. };
  260. /**
  261. * enum ipa3_hw_ntn_channel_states - Values that represent NTN
  262. * channel state machine.
  263. * @IPA_HW_NTN_CHANNEL_STATE_INITED_DISABLED : Channel is
  264. * initialized but disabled
  265. * @IPA_HW_NTN_CHANNEL_STATE_RUNNING : Channel is running.
  266. * Entered after SET_UP_COMMAND is processed successfully
  267. * @IPA_HW_NTN_CHANNEL_STATE_ERROR : Channel is in error state
  268. * @IPA_HW_NTN_CHANNEL_STATE_INVALID : Invalid state. Shall not
  269. * be in use in operational scenario
  270. *
  271. * These states apply to both Tx and Rx paths. These do not reflect the
  272. * sub-state the state machine may be in.
  273. */
  274. enum ipa3_hw_ntn_channel_states {
  275. IPA_HW_NTN_CHANNEL_STATE_INITED_DISABLED = 1,
  276. IPA_HW_NTN_CHANNEL_STATE_RUNNING = 2,
  277. IPA_HW_NTN_CHANNEL_STATE_ERROR = 3,
  278. IPA_HW_NTN_CHANNEL_STATE_INVALID = 0xFF
  279. };
  280. /**
  281. * enum ipa3_hw_ntn_channel_errors - List of NTN Channel error
  282. * types. This is present in the event param
  283. * @IPA_HW_NTN_CH_ERR_NONE: No error persists
  284. * @IPA_HW_NTN_TX_FSM_ERROR: Error in the state machine
  285. * transition
  286. * @IPA_HW_NTN_TX_COMP_RE_FETCH_FAIL: Error while calculating
  287. * num RE to bring
  288. * @IPA_HW_NTN_RX_RING_WP_UPDATE_FAIL: Write pointer update
  289. * failed in Rx ring
  290. * @IPA_HW_NTN_RX_FSM_ERROR: Error in the state machine
  291. * transition
  292. * @IPA_HW_NTN_RX_CACHE_NON_EMPTY:
  293. * @IPA_HW_NTN_CH_ERR_RESERVED:
  294. *
  295. * These states apply to both Tx and Rx paths. These do not
  296. * reflect the sub-state the state machine may be in.
  297. */
  298. enum ipa3_hw_ntn_channel_errors {
  299. IPA_HW_NTN_CH_ERR_NONE = 0,
  300. IPA_HW_NTN_TX_RING_WP_UPDATE_FAIL = 1,
  301. IPA_HW_NTN_TX_FSM_ERROR = 2,
  302. IPA_HW_NTN_TX_COMP_RE_FETCH_FAIL = 3,
  303. IPA_HW_NTN_RX_RING_WP_UPDATE_FAIL = 4,
  304. IPA_HW_NTN_RX_FSM_ERROR = 5,
  305. IPA_HW_NTN_RX_CACHE_NON_EMPTY = 6,
  306. IPA_HW_NTN_CH_ERR_RESERVED = 0xFF
  307. };
  308. /**
  309. * struct Ipa3HwNtnSetUpCmdData_t - Ntn setup command data
  310. * @ring_base_pa: physical address of the base of the Tx/Rx NTN
  311. * ring
  312. * @buff_pool_base_pa: physical address of the base of the Tx/Rx
  313. * buffer pool
  314. * @ntn_ring_size: size of the Tx/Rx NTN ring
  315. * @num_buffers: Rx/tx buffer pool size
  316. * @ntn_reg_base_ptr_pa: physical address of the Tx/Rx NTN
  317. * Ring's tail pointer
  318. * @ipa_pipe_number: IPA pipe number that has to be used for the
  319. * Tx/Rx path
  320. * @dir: Tx/Rx Direction
  321. * @data_buff_size: size of the each data buffer allocated in
  322. * DDR
  323. */
  324. struct Ipa3HwNtnSetUpCmdData_t {
  325. u32 ring_base_pa;
  326. u32 buff_pool_base_pa;
  327. u16 ntn_ring_size;
  328. u16 num_buffers;
  329. u32 ntn_reg_base_ptr_pa;
  330. u8 ipa_pipe_number;
  331. u8 dir;
  332. u16 data_buff_size;
  333. } __packed;
  334. /**
  335. * struct Ipa3HwNtnCommonChCmdData_t - Structure holding the
  336. * parameters for Ntn Tear down command data params
  337. *
  338. *@ipa_pipe_number: IPA pipe number. This could be Tx or an Rx pipe
  339. */
  340. union Ipa3HwNtnCommonChCmdData_t {
  341. struct IpaHwNtnCommonChCmdParams_t {
  342. u32 ipa_pipe_number :8;
  343. u32 reserved :24;
  344. } __packed params;
  345. uint32_t raw32b;
  346. } __packed;
  347. /**
  348. * struct NTN3RxInfoData_t - NTN Structure holding the Rx pipe
  349. * information
  350. *
  351. *@num_pkts_processed: Number of packets processed - cumulative
  352. *
  353. *@ring_stats:
  354. *@gsi_stats:
  355. *@num_db: Number of times the doorbell was rung
  356. *@num_qmb_int_handled: Number of QMB interrupts handled
  357. *@ipa_pipe_number: The IPA Rx/Tx pipe number.
  358. */
  359. struct NTN3RxInfoData_t {
  360. u32 num_pkts_processed;
  361. struct IpaHwRingStats_t ring_stats;
  362. struct IpaHwBamStats_t gsi_stats;
  363. u32 num_db;
  364. u32 num_qmb_int_handled;
  365. u32 ipa_pipe_number;
  366. } __packed;
  367. /**
  368. * struct NTN3TxInfoData_t - Structure holding the NTN Tx channel
  369. * Ensure that this is always word aligned
  370. *
  371. *@num_pkts_processed: Number of packets processed - cumulative
  372. *@tail_ptr_val: Latest value of doorbell written to copy engine
  373. *@num_db_fired: Number of DB from uC FW to Copy engine
  374. *
  375. *@tx_comp_ring_stats:
  376. *@bam_stats:
  377. *@num_db: Number of times the doorbell was rung
  378. *@num_qmb_int_handled: Number of QMB interrupts handled
  379. */
  380. struct NTN3TxInfoData_t {
  381. u32 num_pkts_processed;
  382. struct IpaHwRingStats_t ring_stats;
  383. struct IpaHwBamStats_t gsi_stats;
  384. u32 num_db;
  385. u32 num_qmb_int_handled;
  386. u32 ipa_pipe_number;
  387. } __packed;
  388. /**
  389. * struct Ipa3HwStatsNTNInfoData_t - Structure holding the NTN Tx
  390. * channel Ensure that this is always word aligned
  391. *
  392. */
  393. struct Ipa3HwStatsNTNInfoData_t {
  394. struct NTN3RxInfoData_t rx_ch_stats[IPA_UC_MAX_NTN_RX_CHANNELS];
  395. struct NTN3TxInfoData_t tx_ch_stats[IPA_UC_MAX_NTN_TX_CHANNELS];
  396. } __packed;
  397. /*
  398. * uC offload related data structures
  399. */
  400. #define IPA_UC_OFFLOAD_CONNECTED BIT(0)
  401. #define IPA_UC_OFFLOAD_ENABLED BIT(1)
  402. #define IPA_UC_OFFLOAD_RESUMED BIT(2)
  403. /**
  404. * enum ipa_cpu_2_hw_offload_commands - Values that represent
  405. * the offload commands from CPU
  406. * @IPA_CPU_2_HW_CMD_OFFLOAD_CHANNEL_SET_UP : Command to set up
  407. * Offload protocol's Tx/Rx Path
  408. * @IPA_CPU_2_HW_CMD_OFFLOAD_TEAR_DOWN : Command to tear down
  409. * Offload protocol's Tx/ Rx Path
  410. * @IPA_CPU_2_HW_CMD_PERIPHERAL_INIT :Command to initialize peripheral
  411. * @IPA_CPU_2_HW_CMD_PERIPHERAL_DEINIT : Command to deinitialize peripheral
  412. * @IPA_CPU_2_HW_CMD_OFFLOAD_STATS_ALLOC: Command to start the
  413. * uC stats calculation for a particular protocol
  414. * @IPA_CPU_2_HW_CMD_OFFLOAD_STATS_DEALLOC: Command to stop the
  415. * uC stats calculation for a particular protocol
  416. */
  417. enum ipa_cpu_2_hw_offload_commands {
  418. IPA_CPU_2_HW_CMD_OFFLOAD_CHANNEL_SET_UP =
  419. FEATURE_ENUM_VAL(IPA_HW_FEATURE_OFFLOAD, 1),
  420. IPA_CPU_2_HW_CMD_OFFLOAD_TEAR_DOWN =
  421. FEATURE_ENUM_VAL(IPA_HW_FEATURE_OFFLOAD, 2),
  422. IPA_CPU_2_HW_CMD_PERIPHERAL_INIT =
  423. FEATURE_ENUM_VAL(IPA_HW_FEATURE_OFFLOAD, 3),
  424. IPA_CPU_2_HW_CMD_PERIPHERAL_DEINIT =
  425. FEATURE_ENUM_VAL(IPA_HW_FEATURE_OFFLOAD, 4),
  426. IPA_CPU_2_HW_CMD_OFFLOAD_STATS_ALLOC =
  427. FEATURE_ENUM_VAL(IPA_HW_FEATURE_OFFLOAD, 5),
  428. IPA_CPU_2_HW_CMD_OFFLOAD_STATS_DEALLOC =
  429. FEATURE_ENUM_VAL(IPA_HW_FEATURE_OFFLOAD, 6),
  430. };
  431. /**
  432. * struct IpaOffloadStatschannel_info - channel info for uC
  433. * stats
  434. * @dir: Director of the channel ID DIR_CONSUMER =0,
  435. * DIR_PRODUCER = 1
  436. * @ch_id: Channel id of the IPA endpoint for which stats need
  437. * to be calculated, 0xFF means invalid channel or disable stats
  438. * on already stats enabled channel
  439. */
  440. struct IpaOffloadStatschannel_info {
  441. uint8_t dir;
  442. uint8_t ch_id;
  443. } __packed;
  444. /**
  445. * struct IpaHwOffloadStatsAllocCmdData_t - protocol info for uC
  446. * stats start
  447. * @protocol: Enum that indicates the protocol type
  448. * @ch_id_info: Channel id of the IPA endpoint for which stats
  449. * need to be calculated
  450. */
  451. struct IpaHwOffloadStatsAllocCmdData_t {
  452. uint32_t protocol;
  453. struct IpaOffloadStatschannel_info
  454. ch_id_info[MAX_CH_STATS_SUPPORTED];
  455. } __packed;
  456. /**
  457. * struct IpaHwOffloadStatsDeAllocCmdData_t - protocol info for
  458. * uC stats stop
  459. * @protocol: Enum that indicates the protocol type
  460. */
  461. struct IpaHwOffloadStatsDeAllocCmdData_t {
  462. uint32_t protocol;
  463. } __packed;
  464. /**
  465. * enum ipa3_hw_offload_channel_states - Values that represent
  466. * offload channel state machine.
  467. * @IPA_HW_OFFLOAD_CHANNEL_STATE_INITED_DISABLED : Channel is
  468. * initialized but disabled
  469. * @IPA_HW_OFFLOAD_CHANNEL_STATE_RUNNING : Channel is running.
  470. * Entered after SET_UP_COMMAND is processed successfully
  471. * @IPA_HW_OFFLOAD_CHANNEL_STATE_ERROR : Channel is in error state
  472. * @IPA_HW_OFFLOAD_CHANNEL_STATE_INVALID : Invalid state. Shall not
  473. * be in use in operational scenario
  474. *
  475. * These states apply to both Tx and Rx paths. These do not
  476. * reflect the sub-state the state machine may be in
  477. */
  478. enum ipa3_hw_offload_channel_states {
  479. IPA_HW_OFFLOAD_CHANNEL_STATE_INITED_DISABLED = 1,
  480. IPA_HW_OFFLOAD_CHANNEL_STATE_RUNNING = 2,
  481. IPA_HW_OFFLOAD_CHANNEL_STATE_ERROR = 3,
  482. IPA_HW_OFFLOAD_CHANNEL_STATE_INVALID = 0xFF
  483. };
  484. /**
  485. * enum ipa3_hw_2_cpu_cmd_resp_status - Values that represent
  486. * offload related command response status to be sent to CPU.
  487. */
  488. enum ipa3_hw_2_cpu_offload_cmd_resp_status {
  489. IPA_HW_2_CPU_OFFLOAD_CMD_STATUS_SUCCESS =
  490. FEATURE_ENUM_VAL(IPA_HW_FEATURE_OFFLOAD, 0),
  491. IPA_HW_2_CPU_OFFLOAD_MAX_TX_CHANNELS =
  492. FEATURE_ENUM_VAL(IPA_HW_FEATURE_OFFLOAD, 1),
  493. IPA_HW_2_CPU_OFFLOAD_TX_RING_OVERRUN_POSSIBILITY =
  494. FEATURE_ENUM_VAL(IPA_HW_FEATURE_OFFLOAD, 2),
  495. IPA_HW_2_CPU_OFFLOAD_TX_RING_SET_UP_FAILURE =
  496. FEATURE_ENUM_VAL(IPA_HW_FEATURE_OFFLOAD, 3),
  497. IPA_HW_2_CPU_OFFLOAD_TX_RING_PARAMS_UNALIGNED =
  498. FEATURE_ENUM_VAL(IPA_HW_FEATURE_OFFLOAD, 4),
  499. IPA_HW_2_CPU_OFFLOAD_UNKNOWN_TX_CHANNEL =
  500. FEATURE_ENUM_VAL(IPA_HW_FEATURE_OFFLOAD, 5),
  501. IPA_HW_2_CPU_OFFLOAD_TX_INVALID_FSM_TRANSITION =
  502. FEATURE_ENUM_VAL(IPA_HW_FEATURE_OFFLOAD, 6),
  503. IPA_HW_2_CPU_OFFLOAD_TX_FSM_TRANSITION_ERROR =
  504. FEATURE_ENUM_VAL(IPA_HW_FEATURE_OFFLOAD, 7),
  505. IPA_HW_2_CPU_OFFLOAD_MAX_RX_CHANNELS =
  506. FEATURE_ENUM_VAL(IPA_HW_FEATURE_OFFLOAD, 8),
  507. IPA_HW_2_CPU_OFFLOAD_RX_RING_PARAMS_UNALIGNED =
  508. FEATURE_ENUM_VAL(IPA_HW_FEATURE_OFFLOAD, 9),
  509. IPA_HW_2_CPU_OFFLOAD_RX_RING_SET_UP_FAILURE =
  510. FEATURE_ENUM_VAL(IPA_HW_FEATURE_OFFLOAD, 10),
  511. IPA_HW_2_CPU_OFFLOAD_UNKNOWN_RX_CHANNEL =
  512. FEATURE_ENUM_VAL(IPA_HW_FEATURE_OFFLOAD, 11),
  513. IPA_HW_2_CPU_OFFLOAD_RX_INVALID_FSM_TRANSITION =
  514. FEATURE_ENUM_VAL(IPA_HW_FEATURE_OFFLOAD, 12),
  515. IPA_HW_2_CPU_OFFLOAD_RX_FSM_TRANSITION_ERROR =
  516. FEATURE_ENUM_VAL(IPA_HW_FEATURE_OFFLOAD, 13),
  517. IPA_HW_2_CPU_OFFLOAD_RX_RING_OVERRUN_POSSIBILITY =
  518. FEATURE_ENUM_VAL(IPA_HW_FEATURE_OFFLOAD, 14),
  519. };
  520. /**
  521. * struct IpaHw11adSetupCmdData_t - 11ad setup channel command data
  522. * @dir: Direction RX/TX
  523. * @wifi_ch: 11ad peripheral pipe number
  524. * @gsi_ch: GSI Channel number
  525. * @reserved: 8 bytes padding
  526. * @wifi_hp_addr_lsb: Head/Tail pointer absolute address
  527. * @wifi_hp_addr_msb: Head/Tail pointer absolute address
  528. */
  529. struct IpaHw11adSetupCmdData_t {
  530. u8 dir;
  531. u8 wifi_ch;
  532. u8 gsi_ch;
  533. u8 reserved;
  534. u32 wifi_hp_addr_lsb;
  535. u32 wifi_hp_addr_msb;
  536. } __packed;
  537. /**
  538. * struct IpaHw11adCommonChCmdData_t - 11ad tear down channel command data
  539. * @gsi_ch: GSI Channel number
  540. * @reserved_0: padding
  541. * @reserved_1: padding
  542. */
  543. struct IpaHw11adCommonChCmdData_t {
  544. u8 gsi_ch;
  545. u8 reserved_0;
  546. u16 reserved_1;
  547. } __packed;
  548. /**
  549. * struct IpaHw11adInitCmdData_t - 11ad peripheral init command data
  550. * @periph_baddr_lsb: Peripheral Base Address LSB (pa/IOVA)
  551. * @periph_baddr_msb: Peripheral Base Address MSB (pa/IOVA)
  552. */
  553. struct IpaHw11adInitCmdData_t {
  554. u32 periph_baddr_lsb;
  555. u32 periph_baddr_msb;
  556. } __packed;
  557. /**
  558. * struct IpaHw11adDeinitCmdData_t - 11ad peripheral deinit command data
  559. * @reserved: Reserved for future
  560. */
  561. struct IpaHw11adDeinitCmdData_t {
  562. u32 reserved;
  563. };
  564. /**
  565. * struct IpaHwSetUpCmd - Structure holding the parameters
  566. * for IPA_CPU_2_HW_CMD_OFFLOAD_CHANNEL_SET_UP
  567. *
  568. *
  569. */
  570. union IpaHwSetUpCmd {
  571. struct Ipa3HwNtnSetUpCmdData_t NtnSetupCh_params;
  572. struct IpaHw11adSetupCmdData_t W11AdSetupCh_params;
  573. } __packed;
  574. struct IpaHwOffloadSetUpCmdData_t {
  575. u8 protocol;
  576. union IpaHwSetUpCmd SetupCh_params;
  577. } __packed;
  578. struct IpaHwOffloadSetUpCmdData_t_v4_0 {
  579. u32 protocol;
  580. union IpaHwSetUpCmd SetupCh_params;
  581. } __packed;
  582. /**
  583. * struct IpaHwCommonChCmd - Structure holding the parameters
  584. * for IPA_CPU_2_HW_CMD_OFFLOAD_TEAR_DOWN
  585. *
  586. *
  587. */
  588. union IpaHwCommonChCmd {
  589. union Ipa3HwNtnCommonChCmdData_t NtnCommonCh_params;
  590. struct IpaHw11adCommonChCmdData_t W11AdCommonCh_params;
  591. } __packed;
  592. struct IpaHwOffloadCommonChCmdData_t {
  593. u8 protocol;
  594. union IpaHwCommonChCmd CommonCh_params;
  595. } __packed;
  596. struct IpaHwOffloadCommonChCmdData_t_v4_0 {
  597. u32 protocol;
  598. union IpaHwCommonChCmd CommonCh_params;
  599. } __packed;
  600. /**
  601. * union IpaHwPeripheralInitCmd - Structure holding the parameters
  602. * for IPA_CPU_2_HW_CMD_PERIPHERAL_INIT
  603. *
  604. */
  605. union IpaHwPeripheralInitCmd {
  606. struct IpaHw11adInitCmdData_t W11AdInit_params;
  607. } __packed;
  608. struct IpaHwPeripheralInitCmdData_t {
  609. u32 protocol;
  610. union IpaHwPeripheralInitCmd Init_params;
  611. } __packed;
  612. /**
  613. * union IpaHwPeripheralDeinitCmd - Structure holding the parameters
  614. * for IPA_CPU_2_HW_CMD_PERIPHERAL_DEINIT
  615. *
  616. */
  617. union IpaHwPeripheralDeinitCmd {
  618. struct IpaHw11adDeinitCmdData_t W11AdDeinit_params;
  619. } __packed;
  620. struct IpaHwPeripheralDeinitCmdData_t {
  621. u32 protocol;
  622. union IpaHwPeripheralDeinitCmd PeripheralDeinit_params;
  623. } __packed;
  624. #endif /* _IPA_UC_OFFLOAD_I_H_ */