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 
162ee82402SGolan Ben Ami /* Set bit for enabling automatic function boot */
172ee82402SGolan Ben Ami #define CSR_AUTO_FUNC_BOOT_ENA          BIT(1)
182ee82402SGolan Ben Ami /* Set bit for initiating function boot */
192ee82402SGolan Ben Ami #define CSR_AUTO_FUNC_INIT              BIT(7)
202ee82402SGolan Ben Ami 
212ee82402SGolan Ben Ami /**
222ee82402SGolan Ben Ami  * enum iwl_prph_scratch_mtr_format - tfd size configuration
232ee82402SGolan Ben Ami  * @IWL_PRPH_MTR_FORMAT_16B: 16 bit tfd
242ee82402SGolan Ben Ami  * @IWL_PRPH_MTR_FORMAT_32B: 32 bit tfd
252ee82402SGolan Ben Ami  * @IWL_PRPH_MTR_FORMAT_64B: 64 bit tfd
262ee82402SGolan Ben Ami  * @IWL_PRPH_MTR_FORMAT_256B: 256 bit tfd
272ee82402SGolan Ben Ami  */
282ee82402SGolan Ben Ami enum iwl_prph_scratch_mtr_format {
292ee82402SGolan Ben Ami 	IWL_PRPH_MTR_FORMAT_16B = 0x0,
302ee82402SGolan Ben Ami 	IWL_PRPH_MTR_FORMAT_32B = 0x40000,
312ee82402SGolan Ben Ami 	IWL_PRPH_MTR_FORMAT_64B = 0x80000,
322ee82402SGolan Ben Ami 	IWL_PRPH_MTR_FORMAT_256B = 0xC0000,
332ee82402SGolan Ben Ami };
342ee82402SGolan Ben Ami 
352ee82402SGolan Ben Ami /**
362ee82402SGolan Ben Ami  * enum iwl_prph_scratch_flags - PRPH scratch control flags
371c4db761SMukesh Sisodiya  * @IWL_PRPH_SCRATCH_IMR_DEBUG_EN: IMR support for debug
382ee82402SGolan Ben Ami  * @IWL_PRPH_SCRATCH_EARLY_DEBUG_EN: enable early debug conf
392ee82402SGolan Ben Ami  * @IWL_PRPH_SCRATCH_EDBG_DEST_DRAM: use DRAM, with size allocated
402ee82402SGolan Ben Ami  *	in hwm config.
412ee82402SGolan Ben Ami  * @IWL_PRPH_SCRATCH_EDBG_DEST_INTERNAL: use buffer on SRAM
422ee82402SGolan Ben Ami  * @IWL_PRPH_SCRATCH_EDBG_DEST_ST_ARBITER: use st arbiter, mainly for
432ee82402SGolan Ben Ami  *	multicomm.
442ee82402SGolan Ben Ami  * @IWL_PRPH_SCRATCH_EDBG_DEST_TB22DTF: route debug data to SoC HW
452ee82402SGolan Ben Ami  * @IWL_PRPH_SCTATCH_RB_SIZE_4K: Use 4K RB size (the default is 2K)
462ee82402SGolan Ben Ami  * @IWL_PRPH_SCRATCH_MTR_MODE: format used for completion - 0: for
472ee82402SGolan Ben Ami  *	completion descriptor, 1 for responses (legacy)
482ee82402SGolan Ben Ami  * @IWL_PRPH_SCRATCH_MTR_FORMAT: a mask for the size of the tfd.
492ee82402SGolan Ben Ami  *	There are 4 optional values: 0: 16 bit, 1: 32 bit, 2: 64 bit,
502ee82402SGolan Ben Ami  *	3: 256 bit.
5161576240SJohannes Berg  * @IWL_PRPH_SCRATCH_RB_SIZE_EXT_MASK: RB size full information, ignored
5261576240SJohannes Berg  *	by older firmware versions, so set IWL_PRPH_SCRATCH_RB_SIZE_4K
5361576240SJohannes Berg  *	appropriately; use the below values for this.
5461576240SJohannes Berg  * @IWL_PRPH_SCRATCH_RB_SIZE_EXT_8K: 8kB RB size
5561576240SJohannes Berg  * @IWL_PRPH_SCRATCH_RB_SIZE_EXT_12K: 12kB RB size
563fa965c2SJohannes Berg  * @IWL_PRPH_SCRATCH_RB_SIZE_EXT_16K: 16kB RB size
572ee82402SGolan Ben Ami  */
582ee82402SGolan Ben Ami enum iwl_prph_scratch_flags {
591c4db761SMukesh Sisodiya 	IWL_PRPH_SCRATCH_IMR_DEBUG_EN		= BIT(1),
602ee82402SGolan Ben Ami 	IWL_PRPH_SCRATCH_EARLY_DEBUG_EN		= BIT(4),
612ee82402SGolan Ben Ami 	IWL_PRPH_SCRATCH_EDBG_DEST_DRAM		= BIT(8),
622ee82402SGolan Ben Ami 	IWL_PRPH_SCRATCH_EDBG_DEST_INTERNAL	= BIT(9),
632ee82402SGolan Ben Ami 	IWL_PRPH_SCRATCH_EDBG_DEST_ST_ARBITER	= BIT(10),
642ee82402SGolan Ben Ami 	IWL_PRPH_SCRATCH_EDBG_DEST_TB22DTF	= BIT(11),
652ee82402SGolan Ben Ami 	IWL_PRPH_SCRATCH_RB_SIZE_4K		= BIT(16),
662ee82402SGolan Ben Ami 	IWL_PRPH_SCRATCH_MTR_MODE		= BIT(17),
672ee82402SGolan Ben Ami 	IWL_PRPH_SCRATCH_MTR_FORMAT		= BIT(18) | BIT(19),
6861576240SJohannes Berg 	IWL_PRPH_SCRATCH_RB_SIZE_EXT_MASK	= 0xf << 20,
6961576240SJohannes Berg 	IWL_PRPH_SCRATCH_RB_SIZE_EXT_8K		= 8 << 20,
7061576240SJohannes Berg 	IWL_PRPH_SCRATCH_RB_SIZE_EXT_12K	= 9 << 20,
713fa965c2SJohannes Berg 	IWL_PRPH_SCRATCH_RB_SIZE_EXT_16K	= 10 << 20,
722ee82402SGolan Ben Ami };
732ee82402SGolan Ben Ami 
742ee82402SGolan Ben Ami /*
752ee82402SGolan Ben Ami  * struct iwl_prph_scratch_version - version structure
762ee82402SGolan Ben Ami  * @mac_id: SKU and revision id
772ee82402SGolan Ben Ami  * @version: prph scratch information version id
782ee82402SGolan Ben Ami  * @size: the size of the context information in DWs
792ee82402SGolan Ben Ami  * @reserved: reserved
802ee82402SGolan Ben Ami  */
812ee82402SGolan Ben Ami struct iwl_prph_scratch_version {
822ee82402SGolan Ben Ami 	__le16 mac_id;
832ee82402SGolan Ben Ami 	__le16 version;
842ee82402SGolan Ben Ami 	__le16 size;
852ee82402SGolan Ben Ami 	__le16 reserved;
862ee82402SGolan Ben Ami } __packed; /* PERIPH_SCRATCH_VERSION_S */
872ee82402SGolan Ben Ami 
882ee82402SGolan Ben Ami /*
892ee82402SGolan Ben Ami  * struct iwl_prph_scratch_control - control structure
902ee82402SGolan Ben Ami  * @control_flags: context information flags see &enum iwl_prph_scratch_flags
912ee82402SGolan Ben Ami  * @reserved: reserved
922ee82402SGolan Ben Ami  */
932ee82402SGolan Ben Ami struct iwl_prph_scratch_control {
942ee82402SGolan Ben Ami 	__le32 control_flags;
952ee82402SGolan Ben Ami 	__le32 reserved;
962ee82402SGolan Ben Ami } __packed; /* PERIPH_SCRATCH_CONTROL_S */
972ee82402SGolan Ben Ami 
982ee82402SGolan Ben Ami /*
997ef3e224SLuca Coelho  * struct iwl_prph_scratch_pnvm_cfg - ror config
1007ef3e224SLuca Coelho  * @pnvm_base_addr: PNVM start address
1017ef3e224SLuca Coelho  * @pnvm_size: PNVM size in DWs
1022ee82402SGolan Ben Ami  * @reserved: reserved
1032ee82402SGolan Ben Ami  */
1047ef3e224SLuca Coelho struct iwl_prph_scratch_pnvm_cfg {
1057ef3e224SLuca Coelho 	__le64 pnvm_base_addr;
1067ef3e224SLuca Coelho 	__le32 pnvm_size;
1072ee82402SGolan Ben Ami 	__le32 reserved;
1087ef3e224SLuca Coelho } __packed; /* PERIPH_SCRATCH_PNVM_CFG_S */
1092ee82402SGolan Ben Ami 
1102ee82402SGolan Ben Ami /*
1112ee82402SGolan Ben Ami  * struct iwl_prph_scratch_hwm_cfg - hwm config
1122ee82402SGolan Ben Ami  * @hwm_base_addr: hwm start address
1132ee82402SGolan Ben Ami  * @hwm_size: hwm size in DWs
114f21baf24SMukesh Sisodiya  * @debug_token_config: debug preset
1152ee82402SGolan Ben Ami  */
1162ee82402SGolan Ben Ami struct iwl_prph_scratch_hwm_cfg {
1172ee82402SGolan Ben Ami 	__le64 hwm_base_addr;
1182ee82402SGolan Ben Ami 	__le32 hwm_size;
119f21baf24SMukesh Sisodiya 	__le32 debug_token_config;
1202ee82402SGolan Ben Ami } __packed; /* PERIPH_SCRATCH_HWM_CFG_S */
1212ee82402SGolan Ben Ami 
1222ee82402SGolan Ben Ami /*
1232ee82402SGolan Ben Ami  * struct iwl_prph_scratch_rbd_cfg - RBDs configuration
1242ee82402SGolan Ben Ami  * @free_rbd_addr: default queue free RB CB base address
1252ee82402SGolan Ben Ami  * @reserved: reserved
1262ee82402SGolan Ben Ami  */
1272ee82402SGolan Ben Ami struct iwl_prph_scratch_rbd_cfg {
1282ee82402SGolan Ben Ami 	__le64 free_rbd_addr;
1292ee82402SGolan Ben Ami 	__le32 reserved;
1302ee82402SGolan Ben Ami } __packed; /* PERIPH_SCRATCH_RBD_CFG_S */
1312ee82402SGolan Ben Ami 
1322ee82402SGolan Ben Ami /*
1339dad325fSLuca Coelho  * struct iwl_prph_scratch_uefi_cfg - prph scratch reduce power table
1349dad325fSLuca Coelho  * @base_addr: reduce power table address
1359dad325fSLuca Coelho  * @size: table size in dwords
1369dad325fSLuca Coelho  */
1379dad325fSLuca Coelho struct iwl_prph_scratch_uefi_cfg {
1389dad325fSLuca Coelho 	__le64 base_addr;
1399dad325fSLuca Coelho 	__le32 size;
1409dad325fSLuca Coelho 	__le32 reserved;
1419dad325fSLuca Coelho } __packed; /* PERIPH_SCRATCH_UEFI_CFG_S */
1429dad325fSLuca Coelho 
1439dad325fSLuca Coelho /*
144*09b4c35dSAyala Barazani  * struct iwl_prph_scratch_step_cfg - prph scratch step configuration
145*09b4c35dSAyala Barazani  * @mbx_addr_0: [0:7] revision,
146*09b4c35dSAyala Barazani  *		[8:15] cnvi_to_cnvr length,
147*09b4c35dSAyala Barazani  *		[16:23] cnvr_to_cnvi channel length,
148*09b4c35dSAyala Barazani  *		[24:31] radio1 reserved
149*09b4c35dSAyala Barazani  * @mbx_addr_1: [0:7] radio2 reserved
150*09b4c35dSAyala Barazani  */
151*09b4c35dSAyala Barazani 
152*09b4c35dSAyala Barazani struct iwl_prph_scratch_step_cfg {
153*09b4c35dSAyala Barazani 	__le32 mbx_addr_0;
154*09b4c35dSAyala Barazani 	__le32 mbx_addr_1;
155*09b4c35dSAyala Barazani } __packed;
156*09b4c35dSAyala Barazani 
157*09b4c35dSAyala Barazani /*
1582ee82402SGolan Ben Ami  * struct iwl_prph_scratch_ctrl_cfg - prph scratch ctrl and config
1592ee82402SGolan Ben Ami  * @version: version information of context info and HW
1602ee82402SGolan Ben Ami  * @control: control flags of FH configurations
1617ef3e224SLuca Coelho  * @pnvm_cfg: ror configuration
1622ee82402SGolan Ben Ami  * @hwm_cfg: hwm configuration
1632ee82402SGolan Ben Ami  * @rbd_cfg: default RX queue configuration
164*09b4c35dSAyala Barazani  * @step_cfg: step configuration
1652ee82402SGolan Ben Ami  */
1662ee82402SGolan Ben Ami struct iwl_prph_scratch_ctrl_cfg {
1672ee82402SGolan Ben Ami 	struct iwl_prph_scratch_version version;
1682ee82402SGolan Ben Ami 	struct iwl_prph_scratch_control control;
1697ef3e224SLuca Coelho 	struct iwl_prph_scratch_pnvm_cfg pnvm_cfg;
1702ee82402SGolan Ben Ami 	struct iwl_prph_scratch_hwm_cfg hwm_cfg;
1712ee82402SGolan Ben Ami 	struct iwl_prph_scratch_rbd_cfg rbd_cfg;
1729dad325fSLuca Coelho 	struct iwl_prph_scratch_uefi_cfg reduce_power_cfg;
173*09b4c35dSAyala Barazani 	struct iwl_prph_scratch_step_cfg step_cfg;
1742ee82402SGolan Ben Ami } __packed; /* PERIPH_SCRATCH_CTRL_CFG_S */
1752ee82402SGolan Ben Ami 
1762ee82402SGolan Ben Ami /*
1772ee82402SGolan Ben Ami  * struct iwl_prph_scratch - peripheral scratch mapping
1782ee82402SGolan Ben Ami  * @ctrl_cfg: control and configuration of prph scratch
1792ee82402SGolan Ben Ami  * @dram: firmware images addresses in DRAM
1802ee82402SGolan Ben Ami  * @reserved: reserved
1812ee82402SGolan Ben Ami  */
1822ee82402SGolan Ben Ami struct iwl_prph_scratch {
1832ee82402SGolan Ben Ami 	struct iwl_prph_scratch_ctrl_cfg ctrl_cfg;
184*09b4c35dSAyala Barazani 	__le32 reserved[10];
1852ee82402SGolan Ben Ami 	struct iwl_context_info_dram dram;
1862ee82402SGolan Ben Ami } __packed; /* PERIPH_SCRATCH_S */
1872ee82402SGolan Ben Ami 
1882ee82402SGolan Ben Ami /*
1892ee82402SGolan Ben Ami  * struct iwl_prph_info - peripheral information
1902ee82402SGolan Ben Ami  * @boot_stage_mirror: reflects the value in the Boot Stage CSR register
1912ee82402SGolan Ben Ami  * @ipc_status_mirror: reflects the value in the IPC Status CSR register
1922ee82402SGolan Ben Ami  * @sleep_notif: indicates the peripheral sleep status
1932ee82402SGolan Ben Ami  * @reserved: reserved
1942ee82402SGolan Ben Ami  */
1952ee82402SGolan Ben Ami struct iwl_prph_info {
1962ee82402SGolan Ben Ami 	__le32 boot_stage_mirror;
1972ee82402SGolan Ben Ami 	__le32 ipc_status_mirror;
1982ee82402SGolan Ben Ami 	__le32 sleep_notif;
1992ee82402SGolan Ben Ami 	__le32 reserved;
2002ee82402SGolan Ben Ami } __packed; /* PERIPH_INFO_S */
2012ee82402SGolan Ben Ami 
2022ee82402SGolan Ben Ami /*
2032ee82402SGolan Ben Ami  * struct iwl_context_info_gen3 - device INIT configuration
2042ee82402SGolan Ben Ami  * @version: version of the context information
2052ee82402SGolan Ben Ami  * @size: size of context information in DWs
2062ee82402SGolan Ben Ami  * @config: context in which the peripheral would execute - a subset of
2072ee82402SGolan Ben Ami  *	capability csr register published by the peripheral
2082ee82402SGolan Ben Ami  * @prph_info_base_addr: the peripheral information structure start address
2092ee82402SGolan Ben Ami  * @cr_head_idx_arr_base_addr: the completion ring head index array
2102ee82402SGolan Ben Ami  *	start address
2112ee82402SGolan Ben Ami  * @tr_tail_idx_arr_base_addr: the transfer ring tail index array
2122ee82402SGolan Ben Ami  *	start address
2132ee82402SGolan Ben Ami  * @cr_tail_idx_arr_base_addr: the completion ring tail index array
2142ee82402SGolan Ben Ami  *	start address
2152ee82402SGolan Ben Ami  * @tr_head_idx_arr_base_addr: the transfer ring head index array
2162ee82402SGolan Ben Ami  *	start address
2172ee82402SGolan Ben Ami  * @cr_idx_arr_size: number of entries in the completion ring index array
2182ee82402SGolan Ben Ami  * @tr_idx_arr_size: number of entries in the transfer ring index array
2192ee82402SGolan Ben Ami  * @mtr_base_addr: the message transfer ring start address
2202ee82402SGolan Ben Ami  * @mcr_base_addr: the message completion ring start address
2212ee82402SGolan Ben Ami  * @mtr_size: number of entries which the message transfer ring can hold
2222ee82402SGolan Ben Ami  * @mcr_size: number of entries which the message completion ring can hold
2232ee82402SGolan Ben Ami  * @mtr_doorbell_vec: the doorbell vector associated with the message
2242ee82402SGolan Ben Ami  *	transfer ring
2252ee82402SGolan Ben Ami  * @mcr_doorbell_vec: the doorbell vector associated with the message
2262ee82402SGolan Ben Ami  *	completion ring
2272ee82402SGolan Ben Ami  * @mtr_msi_vec: the MSI which shall be generated by the peripheral after
2282ee82402SGolan Ben Ami  *	completing a transfer descriptor in the message transfer ring
2292ee82402SGolan Ben Ami  * @mcr_msi_vec: the MSI which shall be generated by the peripheral after
2302ee82402SGolan Ben Ami  *	completing a completion descriptor in the message completion ring
2312ee82402SGolan Ben Ami  * @mtr_opt_header_size: the size of the optional header in the transfer
2322ee82402SGolan Ben Ami  *	descriptor associated with the message transfer ring in DWs
2332ee82402SGolan Ben Ami  * @mtr_opt_footer_size: the size of the optional footer in the transfer
2342ee82402SGolan Ben Ami  *	descriptor associated with the message transfer ring in DWs
2352ee82402SGolan Ben Ami  * @mcr_opt_header_size: the size of the optional header in the completion
2362ee82402SGolan Ben Ami  *	descriptor associated with the message completion ring in DWs
2372ee82402SGolan Ben Ami  * @mcr_opt_footer_size: the size of the optional footer in the completion
2382ee82402SGolan Ben Ami  *	descriptor associated with the message completion ring in DWs
2392ee82402SGolan Ben Ami  * @msg_rings_ctrl_flags: message rings control flags
2402ee82402SGolan Ben Ami  * @prph_info_msi_vec: the MSI which shall be generated by the peripheral
2412ee82402SGolan Ben Ami  *	after updating the Peripheral Information structure
2422ee82402SGolan Ben Ami  * @prph_scratch_base_addr: the peripheral scratch structure start address
2432ee82402SGolan Ben Ami  * @prph_scratch_size: the size of the peripheral scratch structure in DWs
2442ee82402SGolan Ben Ami  * @reserved: reserved
2452ee82402SGolan Ben Ami  */
2462ee82402SGolan Ben Ami struct iwl_context_info_gen3 {
2472ee82402SGolan Ben Ami 	__le16 version;
2482ee82402SGolan Ben Ami 	__le16 size;
2492ee82402SGolan Ben Ami 	__le32 config;
2502ee82402SGolan Ben Ami 	__le64 prph_info_base_addr;
2512ee82402SGolan Ben Ami 	__le64 cr_head_idx_arr_base_addr;
2522ee82402SGolan Ben Ami 	__le64 tr_tail_idx_arr_base_addr;
2532ee82402SGolan Ben Ami 	__le64 cr_tail_idx_arr_base_addr;
2542ee82402SGolan Ben Ami 	__le64 tr_head_idx_arr_base_addr;
2552ee82402SGolan Ben Ami 	__le16 cr_idx_arr_size;
2562ee82402SGolan Ben Ami 	__le16 tr_idx_arr_size;
2572ee82402SGolan Ben Ami 	__le64 mtr_base_addr;
2582ee82402SGolan Ben Ami 	__le64 mcr_base_addr;
2592ee82402SGolan Ben Ami 	__le16 mtr_size;
2602ee82402SGolan Ben Ami 	__le16 mcr_size;
2612ee82402SGolan Ben Ami 	__le16 mtr_doorbell_vec;
2622ee82402SGolan Ben Ami 	__le16 mcr_doorbell_vec;
2632ee82402SGolan Ben Ami 	__le16 mtr_msi_vec;
2642ee82402SGolan Ben Ami 	__le16 mcr_msi_vec;
2652ee82402SGolan Ben Ami 	u8 mtr_opt_header_size;
2662ee82402SGolan Ben Ami 	u8 mtr_opt_footer_size;
2672ee82402SGolan Ben Ami 	u8 mcr_opt_header_size;
2682ee82402SGolan Ben Ami 	u8 mcr_opt_footer_size;
2692ee82402SGolan Ben Ami 	__le16 msg_rings_ctrl_flags;
2702ee82402SGolan Ben Ami 	__le16 prph_info_msi_vec;
2712ee82402SGolan Ben Ami 	__le64 prph_scratch_base_addr;
2722ee82402SGolan Ben Ami 	__le32 prph_scratch_size;
2732ee82402SGolan Ben Ami 	__le32 reserved;
2742ee82402SGolan Ben Ami } __packed; /* IPC_CONTEXT_INFO_S */
2752ee82402SGolan Ben Ami 
2762ee82402SGolan Ben Ami int iwl_pcie_ctxt_info_gen3_init(struct iwl_trans *trans,
2772ee82402SGolan Ben Ami 				 const struct fw_img *fw);
27894768975SJohannes Berg void iwl_pcie_ctxt_info_gen3_free(struct iwl_trans *trans, bool alive);
2792ee82402SGolan Ben Ami 
2806654cd4eSLuca Coelho int iwl_trans_pcie_ctx_info_gen3_set_pnvm(struct iwl_trans *trans,
2816654cd4eSLuca Coelho 					  const void *data, u32 len);
2829dad325fSLuca Coelho int iwl_trans_pcie_ctx_info_gen3_set_reduce_power(struct iwl_trans *trans,
2839dad325fSLuca Coelho 						  const void *data, u32 len);
284*09b4c35dSAyala Barazani int iwl_trans_pcie_ctx_info_gen3_set_step(struct iwl_trans *trans,
285*09b4c35dSAyala Barazani 					  u32 mbx_addr_0_step, u32 mbx_addr_1_step);
2862ee82402SGolan Ben Ami #endif /* __iwl_context_info_file_gen3_h__ */
287