18e99ea8dSJohannes Berg /* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */
28e99ea8dSJohannes Berg /*
31c4db761SMukesh Sisodiya  * Copyright (C) 2018, 2020-2022 Intel Corporation
48e99ea8dSJohannes Berg  */
52ee82402SGolan Ben Ami #ifndef __iwl_context_info_file_gen3_h__
62ee82402SGolan Ben Ami #define __iwl_context_info_file_gen3_h__
72ee82402SGolan Ben Ami 
82ee82402SGolan Ben Ami #include "iwl-context-info.h"
92ee82402SGolan Ben Ami 
102ee82402SGolan Ben Ami #define CSR_CTXT_INFO_BOOT_CTRL         0x0
112ee82402SGolan Ben Ami #define CSR_CTXT_INFO_ADDR              0x118
122ee82402SGolan Ben Ami #define CSR_IML_DATA_ADDR               0x120
132ee82402SGolan Ben Ami #define CSR_IML_SIZE_ADDR               0x128
149b58419eSGolan Ben Ami #define CSR_IML_RESP_ADDR               0x12c
152ee82402SGolan Ben Ami 
165f408503SAlon Giladi #define UNFRAGMENTED_PNVM_PAYLOADS_NUMBER 2
175f408503SAlon Giladi 
182ee82402SGolan Ben Ami /* Set bit for enabling automatic function boot */
192ee82402SGolan Ben Ami #define CSR_AUTO_FUNC_BOOT_ENA          BIT(1)
202ee82402SGolan Ben Ami /* Set bit for initiating function boot */
212ee82402SGolan Ben Ami #define CSR_AUTO_FUNC_INIT              BIT(7)
222ee82402SGolan Ben Ami 
232ee82402SGolan Ben Ami /**
242ee82402SGolan Ben Ami  * enum iwl_prph_scratch_mtr_format - tfd size configuration
252ee82402SGolan Ben Ami  * @IWL_PRPH_MTR_FORMAT_16B: 16 bit tfd
262ee82402SGolan Ben Ami  * @IWL_PRPH_MTR_FORMAT_32B: 32 bit tfd
272ee82402SGolan Ben Ami  * @IWL_PRPH_MTR_FORMAT_64B: 64 bit tfd
282ee82402SGolan Ben Ami  * @IWL_PRPH_MTR_FORMAT_256B: 256 bit tfd
292ee82402SGolan Ben Ami  */
302ee82402SGolan Ben Ami enum iwl_prph_scratch_mtr_format {
312ee82402SGolan Ben Ami 	IWL_PRPH_MTR_FORMAT_16B = 0x0,
322ee82402SGolan Ben Ami 	IWL_PRPH_MTR_FORMAT_32B = 0x40000,
332ee82402SGolan Ben Ami 	IWL_PRPH_MTR_FORMAT_64B = 0x80000,
342ee82402SGolan Ben Ami 	IWL_PRPH_MTR_FORMAT_256B = 0xC0000,
352ee82402SGolan Ben Ami };
362ee82402SGolan Ben Ami 
372ee82402SGolan Ben Ami /**
382ee82402SGolan Ben Ami  * enum iwl_prph_scratch_flags - PRPH scratch control flags
391c4db761SMukesh Sisodiya  * @IWL_PRPH_SCRATCH_IMR_DEBUG_EN: IMR support for debug
402ee82402SGolan Ben Ami  * @IWL_PRPH_SCRATCH_EARLY_DEBUG_EN: enable early debug conf
412ee82402SGolan Ben Ami  * @IWL_PRPH_SCRATCH_EDBG_DEST_DRAM: use DRAM, with size allocated
422ee82402SGolan Ben Ami  *	in hwm config.
432ee82402SGolan Ben Ami  * @IWL_PRPH_SCRATCH_EDBG_DEST_INTERNAL: use buffer on SRAM
442ee82402SGolan Ben Ami  * @IWL_PRPH_SCRATCH_EDBG_DEST_ST_ARBITER: use st arbiter, mainly for
452ee82402SGolan Ben Ami  *	multicomm.
462ee82402SGolan Ben Ami  * @IWL_PRPH_SCRATCH_EDBG_DEST_TB22DTF: route debug data to SoC HW
472ee82402SGolan Ben Ami  * @IWL_PRPH_SCTATCH_RB_SIZE_4K: Use 4K RB size (the default is 2K)
482ee82402SGolan Ben Ami  * @IWL_PRPH_SCRATCH_MTR_MODE: format used for completion - 0: for
492ee82402SGolan Ben Ami  *	completion descriptor, 1 for responses (legacy)
502ee82402SGolan Ben Ami  * @IWL_PRPH_SCRATCH_MTR_FORMAT: a mask for the size of the tfd.
512ee82402SGolan Ben Ami  *	There are 4 optional values: 0: 16 bit, 1: 32 bit, 2: 64 bit,
522ee82402SGolan Ben Ami  *	3: 256 bit.
5361576240SJohannes Berg  * @IWL_PRPH_SCRATCH_RB_SIZE_EXT_MASK: RB size full information, ignored
5461576240SJohannes Berg  *	by older firmware versions, so set IWL_PRPH_SCRATCH_RB_SIZE_4K
5561576240SJohannes Berg  *	appropriately; use the below values for this.
5661576240SJohannes Berg  * @IWL_PRPH_SCRATCH_RB_SIZE_EXT_8K: 8kB RB size
5761576240SJohannes Berg  * @IWL_PRPH_SCRATCH_RB_SIZE_EXT_12K: 12kB RB size
583fa965c2SJohannes Berg  * @IWL_PRPH_SCRATCH_RB_SIZE_EXT_16K: 16kB RB size
592ee82402SGolan Ben Ami  */
602ee82402SGolan Ben Ami enum iwl_prph_scratch_flags {
611c4db761SMukesh Sisodiya 	IWL_PRPH_SCRATCH_IMR_DEBUG_EN		= BIT(1),
622ee82402SGolan Ben Ami 	IWL_PRPH_SCRATCH_EARLY_DEBUG_EN		= BIT(4),
632ee82402SGolan Ben Ami 	IWL_PRPH_SCRATCH_EDBG_DEST_DRAM		= BIT(8),
642ee82402SGolan Ben Ami 	IWL_PRPH_SCRATCH_EDBG_DEST_INTERNAL	= BIT(9),
652ee82402SGolan Ben Ami 	IWL_PRPH_SCRATCH_EDBG_DEST_ST_ARBITER	= BIT(10),
662ee82402SGolan Ben Ami 	IWL_PRPH_SCRATCH_EDBG_DEST_TB22DTF	= BIT(11),
672ee82402SGolan Ben Ami 	IWL_PRPH_SCRATCH_RB_SIZE_4K		= BIT(16),
682ee82402SGolan Ben Ami 	IWL_PRPH_SCRATCH_MTR_MODE		= BIT(17),
692ee82402SGolan Ben Ami 	IWL_PRPH_SCRATCH_MTR_FORMAT		= BIT(18) | BIT(19),
7061576240SJohannes Berg 	IWL_PRPH_SCRATCH_RB_SIZE_EXT_MASK	= 0xf << 20,
7161576240SJohannes Berg 	IWL_PRPH_SCRATCH_RB_SIZE_EXT_8K		= 8 << 20,
7261576240SJohannes Berg 	IWL_PRPH_SCRATCH_RB_SIZE_EXT_12K	= 9 << 20,
733fa965c2SJohannes Berg 	IWL_PRPH_SCRATCH_RB_SIZE_EXT_16K	= 10 << 20,
742ee82402SGolan Ben Ami };
752ee82402SGolan Ben Ami 
762ee82402SGolan Ben Ami /*
772ee82402SGolan Ben Ami  * struct iwl_prph_scratch_version - version structure
782ee82402SGolan Ben Ami  * @mac_id: SKU and revision id
792ee82402SGolan Ben Ami  * @version: prph scratch information version id
802ee82402SGolan Ben Ami  * @size: the size of the context information in DWs
812ee82402SGolan Ben Ami  * @reserved: reserved
822ee82402SGolan Ben Ami  */
832ee82402SGolan Ben Ami struct iwl_prph_scratch_version {
842ee82402SGolan Ben Ami 	__le16 mac_id;
852ee82402SGolan Ben Ami 	__le16 version;
862ee82402SGolan Ben Ami 	__le16 size;
872ee82402SGolan Ben Ami 	__le16 reserved;
882ee82402SGolan Ben Ami } __packed; /* PERIPH_SCRATCH_VERSION_S */
892ee82402SGolan Ben Ami 
902ee82402SGolan Ben Ami /*
912ee82402SGolan Ben Ami  * struct iwl_prph_scratch_control - control structure
922ee82402SGolan Ben Ami  * @control_flags: context information flags see &enum iwl_prph_scratch_flags
932ee82402SGolan Ben Ami  * @reserved: reserved
942ee82402SGolan Ben Ami  */
952ee82402SGolan Ben Ami struct iwl_prph_scratch_control {
962ee82402SGolan Ben Ami 	__le32 control_flags;
972ee82402SGolan Ben Ami 	__le32 reserved;
982ee82402SGolan Ben Ami } __packed; /* PERIPH_SCRATCH_CONTROL_S */
992ee82402SGolan Ben Ami 
1002ee82402SGolan Ben Ami /*
1017ef3e224SLuca Coelho  * struct iwl_prph_scratch_pnvm_cfg - ror config
1027ef3e224SLuca Coelho  * @pnvm_base_addr: PNVM start address
1037ef3e224SLuca Coelho  * @pnvm_size: PNVM size in DWs
1042ee82402SGolan Ben Ami  * @reserved: reserved
1052ee82402SGolan Ben Ami  */
1067ef3e224SLuca Coelho struct iwl_prph_scratch_pnvm_cfg {
1077ef3e224SLuca Coelho 	__le64 pnvm_base_addr;
1087ef3e224SLuca Coelho 	__le32 pnvm_size;
1092ee82402SGolan Ben Ami 	__le32 reserved;
1107ef3e224SLuca Coelho } __packed; /* PERIPH_SCRATCH_PNVM_CFG_S */
1112ee82402SGolan Ben Ami 
1122ee82402SGolan Ben Ami /*
1132ee82402SGolan Ben Ami  * struct iwl_prph_scratch_hwm_cfg - hwm config
1142ee82402SGolan Ben Ami  * @hwm_base_addr: hwm start address
1152ee82402SGolan Ben Ami  * @hwm_size: hwm size in DWs
116f21baf24SMukesh Sisodiya  * @debug_token_config: debug preset
1172ee82402SGolan Ben Ami  */
1182ee82402SGolan Ben Ami struct iwl_prph_scratch_hwm_cfg {
1192ee82402SGolan Ben Ami 	__le64 hwm_base_addr;
1202ee82402SGolan Ben Ami 	__le32 hwm_size;
121f21baf24SMukesh Sisodiya 	__le32 debug_token_config;
1222ee82402SGolan Ben Ami } __packed; /* PERIPH_SCRATCH_HWM_CFG_S */
1232ee82402SGolan Ben Ami 
1242ee82402SGolan Ben Ami /*
1252ee82402SGolan Ben Ami  * struct iwl_prph_scratch_rbd_cfg - RBDs configuration
1262ee82402SGolan Ben Ami  * @free_rbd_addr: default queue free RB CB base address
1272ee82402SGolan Ben Ami  * @reserved: reserved
1282ee82402SGolan Ben Ami  */
1292ee82402SGolan Ben Ami struct iwl_prph_scratch_rbd_cfg {
1302ee82402SGolan Ben Ami 	__le64 free_rbd_addr;
1312ee82402SGolan Ben Ami 	__le32 reserved;
1322ee82402SGolan Ben Ami } __packed; /* PERIPH_SCRATCH_RBD_CFG_S */
1332ee82402SGolan Ben Ami 
1342ee82402SGolan Ben Ami /*
1359dad325fSLuca Coelho  * struct iwl_prph_scratch_uefi_cfg - prph scratch reduce power table
1369dad325fSLuca Coelho  * @base_addr: reduce power table address
1379dad325fSLuca Coelho  * @size: table size in dwords
1389dad325fSLuca Coelho  */
1399dad325fSLuca Coelho struct iwl_prph_scratch_uefi_cfg {
1409dad325fSLuca Coelho 	__le64 base_addr;
1419dad325fSLuca Coelho 	__le32 size;
1429dad325fSLuca Coelho 	__le32 reserved;
1439dad325fSLuca Coelho } __packed; /* PERIPH_SCRATCH_UEFI_CFG_S */
1449dad325fSLuca Coelho 
1459dad325fSLuca Coelho /*
14609b4c35dSAyala Barazani  * struct iwl_prph_scratch_step_cfg - prph scratch step configuration
14709b4c35dSAyala Barazani  * @mbx_addr_0: [0:7] revision,
14809b4c35dSAyala Barazani  *		[8:15] cnvi_to_cnvr length,
14909b4c35dSAyala Barazani  *		[16:23] cnvr_to_cnvi channel length,
15009b4c35dSAyala Barazani  *		[24:31] radio1 reserved
15109b4c35dSAyala Barazani  * @mbx_addr_1: [0:7] radio2 reserved
15209b4c35dSAyala Barazani  */
15309b4c35dSAyala Barazani 
15409b4c35dSAyala Barazani struct iwl_prph_scratch_step_cfg {
15509b4c35dSAyala Barazani 	__le32 mbx_addr_0;
15609b4c35dSAyala Barazani 	__le32 mbx_addr_1;
15709b4c35dSAyala Barazani } __packed;
15809b4c35dSAyala Barazani 
15909b4c35dSAyala Barazani /*
1602ee82402SGolan Ben Ami  * struct iwl_prph_scratch_ctrl_cfg - prph scratch ctrl and config
1612ee82402SGolan Ben Ami  * @version: version information of context info and HW
1622ee82402SGolan Ben Ami  * @control: control flags of FH configurations
1637ef3e224SLuca Coelho  * @pnvm_cfg: ror configuration
1642ee82402SGolan Ben Ami  * @hwm_cfg: hwm configuration
1652ee82402SGolan Ben Ami  * @rbd_cfg: default RX queue configuration
16609b4c35dSAyala Barazani  * @step_cfg: step configuration
1672ee82402SGolan Ben Ami  */
1682ee82402SGolan Ben Ami struct iwl_prph_scratch_ctrl_cfg {
1692ee82402SGolan Ben Ami 	struct iwl_prph_scratch_version version;
1702ee82402SGolan Ben Ami 	struct iwl_prph_scratch_control control;
1717ef3e224SLuca Coelho 	struct iwl_prph_scratch_pnvm_cfg pnvm_cfg;
1722ee82402SGolan Ben Ami 	struct iwl_prph_scratch_hwm_cfg hwm_cfg;
1732ee82402SGolan Ben Ami 	struct iwl_prph_scratch_rbd_cfg rbd_cfg;
1749dad325fSLuca Coelho 	struct iwl_prph_scratch_uefi_cfg reduce_power_cfg;
17509b4c35dSAyala Barazani 	struct iwl_prph_scratch_step_cfg step_cfg;
1762ee82402SGolan Ben Ami } __packed; /* PERIPH_SCRATCH_CTRL_CFG_S */
1772ee82402SGolan Ben Ami 
1782ee82402SGolan Ben Ami /*
1792ee82402SGolan Ben Ami  * struct iwl_prph_scratch - peripheral scratch mapping
1802ee82402SGolan Ben Ami  * @ctrl_cfg: control and configuration of prph scratch
1812ee82402SGolan Ben Ami  * @dram: firmware images addresses in DRAM
1822ee82402SGolan Ben Ami  * @reserved: reserved
1832ee82402SGolan Ben Ami  */
1842ee82402SGolan Ben Ami struct iwl_prph_scratch {
1852ee82402SGolan Ben Ami 	struct iwl_prph_scratch_ctrl_cfg ctrl_cfg;
18609b4c35dSAyala Barazani 	__le32 reserved[10];
1872ee82402SGolan Ben Ami 	struct iwl_context_info_dram dram;
1882ee82402SGolan Ben Ami } __packed; /* PERIPH_SCRATCH_S */
1892ee82402SGolan Ben Ami 
1902ee82402SGolan Ben Ami /*
1912ee82402SGolan Ben Ami  * struct iwl_prph_info - peripheral information
1922ee82402SGolan Ben Ami  * @boot_stage_mirror: reflects the value in the Boot Stage CSR register
1932ee82402SGolan Ben Ami  * @ipc_status_mirror: reflects the value in the IPC Status CSR register
1942ee82402SGolan Ben Ami  * @sleep_notif: indicates the peripheral sleep status
1952ee82402SGolan Ben Ami  * @reserved: reserved
1962ee82402SGolan Ben Ami  */
1972ee82402SGolan Ben Ami struct iwl_prph_info {
1982ee82402SGolan Ben Ami 	__le32 boot_stage_mirror;
1992ee82402SGolan Ben Ami 	__le32 ipc_status_mirror;
2002ee82402SGolan Ben Ami 	__le32 sleep_notif;
2012ee82402SGolan Ben Ami 	__le32 reserved;
2022ee82402SGolan Ben Ami } __packed; /* PERIPH_INFO_S */
2032ee82402SGolan Ben Ami 
2042ee82402SGolan Ben Ami /*
2052ee82402SGolan Ben Ami  * struct iwl_context_info_gen3 - device INIT configuration
2062ee82402SGolan Ben Ami  * @version: version of the context information
2072ee82402SGolan Ben Ami  * @size: size of context information in DWs
2082ee82402SGolan Ben Ami  * @config: context in which the peripheral would execute - a subset of
2092ee82402SGolan Ben Ami  *	capability csr register published by the peripheral
2102ee82402SGolan Ben Ami  * @prph_info_base_addr: the peripheral information structure start address
2112ee82402SGolan Ben Ami  * @cr_head_idx_arr_base_addr: the completion ring head index array
2122ee82402SGolan Ben Ami  *	start address
2132ee82402SGolan Ben Ami  * @tr_tail_idx_arr_base_addr: the transfer ring tail index array
2142ee82402SGolan Ben Ami  *	start address
2152ee82402SGolan Ben Ami  * @cr_tail_idx_arr_base_addr: the completion ring tail index array
2162ee82402SGolan Ben Ami  *	start address
2172ee82402SGolan Ben Ami  * @tr_head_idx_arr_base_addr: the transfer ring head index array
2182ee82402SGolan Ben Ami  *	start address
2192ee82402SGolan Ben Ami  * @cr_idx_arr_size: number of entries in the completion ring index array
2202ee82402SGolan Ben Ami  * @tr_idx_arr_size: number of entries in the transfer ring index array
2212ee82402SGolan Ben Ami  * @mtr_base_addr: the message transfer ring start address
2222ee82402SGolan Ben Ami  * @mcr_base_addr: the message completion ring start address
2232ee82402SGolan Ben Ami  * @mtr_size: number of entries which the message transfer ring can hold
2242ee82402SGolan Ben Ami  * @mcr_size: number of entries which the message completion ring can hold
2252ee82402SGolan Ben Ami  * @mtr_doorbell_vec: the doorbell vector associated with the message
2262ee82402SGolan Ben Ami  *	transfer ring
2272ee82402SGolan Ben Ami  * @mcr_doorbell_vec: the doorbell vector associated with the message
2282ee82402SGolan Ben Ami  *	completion ring
2292ee82402SGolan Ben Ami  * @mtr_msi_vec: the MSI which shall be generated by the peripheral after
2302ee82402SGolan Ben Ami  *	completing a transfer descriptor in the message transfer ring
2312ee82402SGolan Ben Ami  * @mcr_msi_vec: the MSI which shall be generated by the peripheral after
2322ee82402SGolan Ben Ami  *	completing a completion descriptor in the message completion ring
2332ee82402SGolan Ben Ami  * @mtr_opt_header_size: the size of the optional header in the transfer
2342ee82402SGolan Ben Ami  *	descriptor associated with the message transfer ring in DWs
2352ee82402SGolan Ben Ami  * @mtr_opt_footer_size: the size of the optional footer in the transfer
2362ee82402SGolan Ben Ami  *	descriptor associated with the message transfer ring in DWs
2372ee82402SGolan Ben Ami  * @mcr_opt_header_size: the size of the optional header in the completion
2382ee82402SGolan Ben Ami  *	descriptor associated with the message completion ring in DWs
2392ee82402SGolan Ben Ami  * @mcr_opt_footer_size: the size of the optional footer in the completion
2402ee82402SGolan Ben Ami  *	descriptor associated with the message completion ring in DWs
2412ee82402SGolan Ben Ami  * @msg_rings_ctrl_flags: message rings control flags
2422ee82402SGolan Ben Ami  * @prph_info_msi_vec: the MSI which shall be generated by the peripheral
2432ee82402SGolan Ben Ami  *	after updating the Peripheral Information structure
2442ee82402SGolan Ben Ami  * @prph_scratch_base_addr: the peripheral scratch structure start address
2452ee82402SGolan Ben Ami  * @prph_scratch_size: the size of the peripheral scratch structure in DWs
2462ee82402SGolan Ben Ami  * @reserved: reserved
2472ee82402SGolan Ben Ami  */
2482ee82402SGolan Ben Ami struct iwl_context_info_gen3 {
2492ee82402SGolan Ben Ami 	__le16 version;
2502ee82402SGolan Ben Ami 	__le16 size;
2512ee82402SGolan Ben Ami 	__le32 config;
2522ee82402SGolan Ben Ami 	__le64 prph_info_base_addr;
2532ee82402SGolan Ben Ami 	__le64 cr_head_idx_arr_base_addr;
2542ee82402SGolan Ben Ami 	__le64 tr_tail_idx_arr_base_addr;
2552ee82402SGolan Ben Ami 	__le64 cr_tail_idx_arr_base_addr;
2562ee82402SGolan Ben Ami 	__le64 tr_head_idx_arr_base_addr;
2572ee82402SGolan Ben Ami 	__le16 cr_idx_arr_size;
2582ee82402SGolan Ben Ami 	__le16 tr_idx_arr_size;
2592ee82402SGolan Ben Ami 	__le64 mtr_base_addr;
2602ee82402SGolan Ben Ami 	__le64 mcr_base_addr;
2612ee82402SGolan Ben Ami 	__le16 mtr_size;
2622ee82402SGolan Ben Ami 	__le16 mcr_size;
2632ee82402SGolan Ben Ami 	__le16 mtr_doorbell_vec;
2642ee82402SGolan Ben Ami 	__le16 mcr_doorbell_vec;
2652ee82402SGolan Ben Ami 	__le16 mtr_msi_vec;
2662ee82402SGolan Ben Ami 	__le16 mcr_msi_vec;
2672ee82402SGolan Ben Ami 	u8 mtr_opt_header_size;
2682ee82402SGolan Ben Ami 	u8 mtr_opt_footer_size;
2692ee82402SGolan Ben Ami 	u8 mcr_opt_header_size;
2702ee82402SGolan Ben Ami 	u8 mcr_opt_footer_size;
2712ee82402SGolan Ben Ami 	__le16 msg_rings_ctrl_flags;
2722ee82402SGolan Ben Ami 	__le16 prph_info_msi_vec;
2732ee82402SGolan Ben Ami 	__le64 prph_scratch_base_addr;
2742ee82402SGolan Ben Ami 	__le32 prph_scratch_size;
2752ee82402SGolan Ben Ami 	__le32 reserved;
2762ee82402SGolan Ben Ami } __packed; /* IPC_CONTEXT_INFO_S */
2772ee82402SGolan Ben Ami 
2782ee82402SGolan Ben Ami int iwl_pcie_ctxt_info_gen3_init(struct iwl_trans *trans,
2792ee82402SGolan Ben Ami 				 const struct fw_img *fw);
28094768975SJohannes Berg void iwl_pcie_ctxt_info_gen3_free(struct iwl_trans *trans, bool alive);
2812ee82402SGolan Ben Ami 
282*194d1f84SAlon Giladi int iwl_trans_pcie_ctx_info_gen3_load_pnvm(struct iwl_trans *trans,
2835f408503SAlon Giladi 					   const struct iwl_pnvm_image *pnvm_payloads);
284*194d1f84SAlon Giladi void iwl_trans_pcie_ctx_info_gen3_set_pnvm(struct iwl_trans *trans);
2859dad325fSLuca Coelho int iwl_trans_pcie_ctx_info_gen3_set_reduce_power(struct iwl_trans *trans,
2869dad325fSLuca Coelho 						  const void *data, u32 len);
28709b4c35dSAyala Barazani int iwl_trans_pcie_ctx_info_gen3_set_step(struct iwl_trans *trans,
28809b4c35dSAyala Barazani 					  u32 mbx_addr_0_step, u32 mbx_addr_1_step);
2892ee82402SGolan Ben Ami #endif /* __iwl_context_info_file_gen3_h__ */
290