mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-13 13:30:08 +00:00
We're adding a new IWLMLD opmode for just BZ and later devices. If that's enabled but IWLMVM isn't, the build fails because 22000 family configs aren't built but BZ and later refer to it. Rather than trying to make some new file to build it in all cases, just copy the small struct. Signed-off-by: Johannes Berg <johannes.berg@intel.com> Reviewed-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com> Signed-off-by: Miri Korenblit <miriam.rachel.korenblit@intel.com> Link: https://patch.msgid.link/20250205145347.1d6186c23bee.I3c61a6c9e0db3ba6eea4dac63e1547945ad01703@changeid Signed-off-by: Johannes Berg <johannes.berg@intel.com>
184 lines
5.6 KiB
C
184 lines
5.6 KiB
C
// SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
|
|
/*
|
|
* Copyright (C) 2015-2017 Intel Deutschland GmbH
|
|
* Copyright (C) 2018-2024 Intel Corporation
|
|
*/
|
|
#include <linux/module.h>
|
|
#include <linux/stringify.h>
|
|
#include "iwl-config.h"
|
|
#include "iwl-prph.h"
|
|
#include "fw/api/txq.h"
|
|
|
|
/* Highest firmware API version supported */
|
|
#define IWL_BZ_UCODE_API_MAX 96
|
|
|
|
/* Lowest firmware API version supported */
|
|
#define IWL_BZ_UCODE_API_MIN 92
|
|
|
|
/* NVM versions */
|
|
#define IWL_BZ_NVM_VERSION 0x0a1d
|
|
|
|
/* Memory offsets and lengths */
|
|
#define IWL_BZ_DCCM_OFFSET 0x800000 /* LMAC1 */
|
|
#define IWL_BZ_DCCM_LEN 0x10000 /* LMAC1 */
|
|
#define IWL_BZ_DCCM2_OFFSET 0x880000
|
|
#define IWL_BZ_DCCM2_LEN 0x8000
|
|
#define IWL_BZ_SMEM_OFFSET 0x400000
|
|
#define IWL_BZ_SMEM_LEN 0xD0000
|
|
|
|
#define IWL_BZ_A_HR_B_FW_PRE "iwlwifi-bz-a0-hr-b0"
|
|
#define IWL_BZ_A_GF_A_FW_PRE "iwlwifi-bz-a0-gf-a0"
|
|
#define IWL_BZ_A_GF4_A_FW_PRE "iwlwifi-bz-a0-gf4-a0"
|
|
#define IWL_BZ_A_FM_B_FW_PRE "iwlwifi-bz-a0-fm-b0"
|
|
#define IWL_BZ_A_FM_C_FW_PRE "iwlwifi-bz-a0-fm-c0"
|
|
#define IWL_BZ_A_FM4_B_FW_PRE "iwlwifi-bz-a0-fm4-b0"
|
|
#define IWL_GL_B_FM_B_FW_PRE "iwlwifi-gl-b0-fm-b0"
|
|
#define IWL_GL_C_FM_C_FW_PRE "iwlwifi-gl-c0-fm-c0"
|
|
|
|
#define IWL_BZ_A_HR_B_MODULE_FIRMWARE(api) \
|
|
IWL_BZ_A_HR_B_FW_PRE "-" __stringify(api) ".ucode"
|
|
|
|
static const struct iwl_base_params iwl_bz_base_params = {
|
|
.eeprom_size = OTP_LOW_IMAGE_SIZE_32K,
|
|
.num_of_queues = 512,
|
|
.max_tfd_queue_size = 65536,
|
|
.shadow_ram_support = true,
|
|
.led_compensation = 57,
|
|
.wd_timeout = IWL_LONG_WD_TIMEOUT,
|
|
.max_event_log_size = 512,
|
|
.shadow_reg_enable = true,
|
|
.pcie_l1_allowed = true,
|
|
};
|
|
|
|
const struct iwl_ht_params iwl_bz_ht_params = {
|
|
.stbc = true,
|
|
.ldpc = true,
|
|
.ht40_bands = BIT(NL80211_BAND_2GHZ) | BIT(NL80211_BAND_5GHZ) |
|
|
BIT(NL80211_BAND_6GHZ),
|
|
};
|
|
|
|
#define IWL_DEVICE_BZ_COMMON \
|
|
.ucode_api_max = IWL_BZ_UCODE_API_MAX, \
|
|
.ucode_api_min = IWL_BZ_UCODE_API_MIN, \
|
|
.led_mode = IWL_LED_RF_STATE, \
|
|
.nvm_hw_section_num = 10, \
|
|
.non_shared_ant = ANT_B, \
|
|
.dccm_offset = IWL_BZ_DCCM_OFFSET, \
|
|
.dccm_len = IWL_BZ_DCCM_LEN, \
|
|
.dccm2_offset = IWL_BZ_DCCM2_OFFSET, \
|
|
.dccm2_len = IWL_BZ_DCCM2_LEN, \
|
|
.smem_offset = IWL_BZ_SMEM_OFFSET, \
|
|
.smem_len = IWL_BZ_SMEM_LEN, \
|
|
.apmg_not_supported = true, \
|
|
.trans.mq_rx_supported = true, \
|
|
.vht_mu_mimo_supported = true, \
|
|
.mac_addr_from_csr = 0x30, \
|
|
.nvm_ver = IWL_BZ_NVM_VERSION, \
|
|
.trans.rf_id = true, \
|
|
.trans.gen2 = true, \
|
|
.nvm_type = IWL_NVM_EXT, \
|
|
.dbgc_supported = true, \
|
|
.min_umac_error_event_table = 0xD0000, \
|
|
.d3_debug_data_base_addr = 0x401000, \
|
|
.d3_debug_data_length = 60 * 1024, \
|
|
.mon_smem_regs = { \
|
|
.write_ptr = { \
|
|
.addr = LDBG_M2S_BUF_WPTR, \
|
|
.mask = LDBG_M2S_BUF_WPTR_VAL_MSK, \
|
|
}, \
|
|
.cycle_cnt = { \
|
|
.addr = LDBG_M2S_BUF_WRAP_CNT, \
|
|
.mask = LDBG_M2S_BUF_WRAP_CNT_VAL_MSK, \
|
|
}, \
|
|
}, \
|
|
.trans.umac_prph_offset = 0x300000, \
|
|
.trans.device_family = IWL_DEVICE_FAMILY_BZ, \
|
|
.trans.base_params = &iwl_bz_base_params, \
|
|
.min_txq_size = 128, \
|
|
.gp2_reg_addr = 0xd02c68, \
|
|
.min_ba_txq_size = IWL_DEFAULT_QUEUE_SIZE_EHT, \
|
|
.mon_dram_regs = { \
|
|
.write_ptr = { \
|
|
.addr = DBGC_CUR_DBGBUF_STATUS, \
|
|
.mask = DBGC_CUR_DBGBUF_STATUS_OFFSET_MSK, \
|
|
}, \
|
|
.cycle_cnt = { \
|
|
.addr = DBGC_DBGBUF_WRAP_AROUND, \
|
|
.mask = 0xffffffff, \
|
|
}, \
|
|
.cur_frag = { \
|
|
.addr = DBGC_CUR_DBGBUF_STATUS, \
|
|
.mask = DBGC_CUR_DBGBUF_STATUS_IDX_MSK, \
|
|
}, \
|
|
}, \
|
|
.mon_dbgi_regs = { \
|
|
.write_ptr = { \
|
|
.addr = DBGI_SRAM_FIFO_POINTERS, \
|
|
.mask = DBGI_SRAM_FIFO_POINTERS_WR_PTR_MSK, \
|
|
}, \
|
|
}
|
|
|
|
#define IWL_DEVICE_BZ \
|
|
IWL_DEVICE_BZ_COMMON, \
|
|
.ht_params = &iwl_bz_ht_params
|
|
|
|
/*
|
|
* This size was picked according to 8 MSDUs inside 512 A-MSDUs in an
|
|
* A-MPDU, with additional overhead to account for processing time.
|
|
*/
|
|
#define IWL_NUM_RBDS_BZ_EHT (512 * 16)
|
|
|
|
const struct iwl_cfg_trans_params iwl_bz_trans_cfg = {
|
|
.device_family = IWL_DEVICE_FAMILY_BZ,
|
|
.base_params = &iwl_bz_base_params,
|
|
.mq_rx_supported = true,
|
|
.rf_id = true,
|
|
.gen2 = true,
|
|
.integrated = true,
|
|
.umac_prph_offset = 0x300000,
|
|
.xtal_latency = 12000,
|
|
.low_latency_xtal = true,
|
|
.ltr_delay = IWL_CFG_TRANS_LTR_DELAY_2500US,
|
|
};
|
|
|
|
const struct iwl_cfg_trans_params iwl_gl_trans_cfg = {
|
|
.device_family = IWL_DEVICE_FAMILY_BZ,
|
|
.base_params = &iwl_bz_base_params,
|
|
.mq_rx_supported = true,
|
|
.rf_id = true,
|
|
.gen2 = true,
|
|
.umac_prph_offset = 0x300000,
|
|
.xtal_latency = 12000,
|
|
.low_latency_xtal = true,
|
|
};
|
|
|
|
const char iwl_fm_name[] = "Intel(R) Wi-Fi 7 BE201 320MHz";
|
|
const char iwl_wh_name[] = "Intel(R) Wi-Fi 7 BE211 320MHz";
|
|
const char iwl_gl_name[] = "Intel(R) Wi-Fi 7 BE200 320MHz";
|
|
const char iwl_mtp_name[] = "Intel(R) Wi-Fi 7 BE202 160MHz";
|
|
|
|
const struct iwl_cfg iwl_cfg_bz = {
|
|
.fw_name_mac = "bz",
|
|
.uhb_supported = true,
|
|
IWL_DEVICE_BZ,
|
|
.features = IWL_TX_CSUM_NETIF_FLAGS | NETIF_F_RXCSUM,
|
|
.num_rbds = IWL_NUM_RBDS_BZ_EHT,
|
|
};
|
|
|
|
const struct iwl_cfg iwl_cfg_gl = {
|
|
.fw_name_mac = "gl",
|
|
.uhb_supported = true,
|
|
IWL_DEVICE_BZ,
|
|
.features = IWL_TX_CSUM_NETIF_FLAGS | NETIF_F_RXCSUM,
|
|
.num_rbds = IWL_NUM_RBDS_BZ_EHT,
|
|
};
|
|
|
|
MODULE_FIRMWARE(IWL_BZ_A_HR_B_MODULE_FIRMWARE(IWL_BZ_UCODE_API_MAX));
|
|
IWL_FW_AND_PNVM(IWL_BZ_A_GF_A_FW_PRE, IWL_BZ_UCODE_API_MAX);
|
|
IWL_FW_AND_PNVM(IWL_BZ_A_GF4_A_FW_PRE, IWL_BZ_UCODE_API_MAX);
|
|
IWL_FW_AND_PNVM(IWL_BZ_A_FM_B_FW_PRE, IWL_BZ_UCODE_API_MAX);
|
|
IWL_FW_AND_PNVM(IWL_BZ_A_FM_C_FW_PRE, IWL_BZ_UCODE_API_MAX);
|
|
IWL_FW_AND_PNVM(IWL_BZ_A_FM4_B_FW_PRE, IWL_BZ_UCODE_API_MAX);
|
|
IWL_FW_AND_PNVM(IWL_GL_B_FM_B_FW_PRE, IWL_BZ_UCODE_API_MAX);
|
|
IWL_FW_AND_PNVM(IWL_GL_C_FM_C_FW_PRE, IWL_BZ_UCODE_API_MAX);
|