Commit d3318abf authored by Anilkumar Kolli's avatar Anilkumar Kolli Committed by Kalle Valo

ath11k: convert ath11k_hw_params to an array

Convert to ath11k_hw_params to an array to make it possible add new hardware in
the future, for example IPQ6018 or QCA6390.

No functional changes. Compile tested only.
Signed-off-by: default avatarAnilkumar Kolli <akolli@codeaurora.org>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/1592316055-24958-3-git-send-email-kvalo@codeaurora.org
parent 166e22b3
...@@ -17,13 +17,16 @@ unsigned int ath11k_debug_mask; ...@@ -17,13 +17,16 @@ unsigned int ath11k_debug_mask;
module_param_named(debug_mask, ath11k_debug_mask, uint, 0644); module_param_named(debug_mask, ath11k_debug_mask, uint, 0644);
MODULE_PARM_DESC(debug_mask, "Debugging mask"); MODULE_PARM_DESC(debug_mask, "Debugging mask");
static const struct ath11k_hw_params ath11k_hw_params = { static const struct ath11k_hw_params ath11k_hw_params[] = {
.name = "ipq8074", {
.hw_rev = ATH11K_HW_IPQ8074,
.name = "ipq8074 hw2.0",
.fw = { .fw = {
.dir = IPQ8074_FW_DIR, .dir = IPQ8074_FW_DIR,
.board_size = IPQ8074_MAX_BOARD_DATA_SZ, .board_size = IPQ8074_MAX_BOARD_DATA_SZ,
.cal_size = IPQ8074_MAX_CAL_DATA_SZ, .cal_size = IPQ8074_MAX_CAL_DATA_SZ,
}, },
},
}; };
/* Map from pdev index to hw mac index */ /* Map from pdev index to hw mac index */
...@@ -717,6 +720,30 @@ static void ath11k_core_restart(struct work_struct *work) ...@@ -717,6 +720,30 @@ static void ath11k_core_restart(struct work_struct *work)
complete(&ab->driver_recovery); complete(&ab->driver_recovery);
} }
static int ath11k_init_hw_params(struct ath11k_base *ab)
{
const struct ath11k_hw_params *hw_params = NULL;
int i;
for (i = 0; i < ARRAY_SIZE(ath11k_hw_params); i++) {
hw_params = &ath11k_hw_params[i];
if (hw_params->hw_rev == ab->hw_rev)
break;
}
if (i == ARRAY_SIZE(ath11k_hw_params)) {
ath11k_err(ab, "Unsupported hardware version: 0x%x\n", ab->hw_rev);
return -EINVAL;
}
ab->hw_params = *hw_params;
ath11k_dbg(ab, ATH11K_DBG_BOOT, "Hardware name %s\n", ab->hw_params.name);
return 0;
}
int ath11k_core_init(struct ath11k_base *ab) int ath11k_core_init(struct ath11k_base *ab)
{ {
struct device *dev = ab->dev; struct device *dev = ab->dev;
...@@ -735,7 +762,12 @@ int ath11k_core_init(struct ath11k_base *ab) ...@@ -735,7 +762,12 @@ int ath11k_core_init(struct ath11k_base *ab)
return -EINVAL; return -EINVAL;
} }
ab->tgt_rproc = prproc; ab->tgt_rproc = prproc;
ab->hw_params = ath11k_hw_params;
ret = ath11k_init_hw_params(ab);
if (ret) {
ath11k_err(ab, "failed to get hw params %d\n", ret);
return ret;
}
ret = ath11k_core_soc_create(ab); ret = ath11k_core_soc_create(ab);
if (ret) { if (ret) {
......
...@@ -106,6 +106,7 @@ enum ath11k_bus { ...@@ -106,6 +106,7 @@ enum ath11k_bus {
struct ath11k_hw_params { struct ath11k_hw_params {
const char *name; const char *name;
u16 hw_rev;
struct { struct {
const char *dir; const char *dir;
size_t board_size; size_t board_size;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment