Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b7af6a99 authored by Wey-Yi Guy's avatar Wey-Yi Guy
Browse files

iwlagn: always support uCode trace



All _agn devices support continuous uCode trace, remove checking

Signed-off-by: default avatarWey-Yi Guy <wey-yi.w.guy@intel.com>
parent b4ebd28f
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -242,7 +242,6 @@ static struct iwl_base_params iwl1000_base_params = {
	.chain_noise_scale = 1000,
	.wd_timeout = IWL_DEF_WD_TIMEOUT,
	.max_event_log_size = 128,
	.ucode_tracing = true,
};
static struct iwl_ht_params iwl1000_ht_params = {
	.ht_greenfield_support = true,
+0 −2
Original line number Diff line number Diff line
@@ -348,7 +348,6 @@ static struct iwl_base_params iwl2000_base_params = {
	.chain_noise_scale = 1000,
	.wd_timeout = IWL_DEF_WD_TIMEOUT,
	.max_event_log_size = 512,
	.ucode_tracing = true,
	.shadow_reg_enable = true,
};

@@ -368,7 +367,6 @@ static struct iwl_base_params iwl2030_base_params = {
	.chain_noise_scale = 1000,
	.wd_timeout = IWL_LONG_WD_TIMEOUT,
	.max_event_log_size = 512,
	.ucode_tracing = true,
	.shadow_reg_enable = true,
};

+0 −1
Original line number Diff line number Diff line
@@ -467,7 +467,6 @@ static struct iwl_base_params iwl5000_base_params = {
	.chain_noise_scale = 1000,
	.wd_timeout = IWL_LONG_WD_TIMEOUT,
	.max_event_log_size = 512,
	.ucode_tracing = true,
};
static struct iwl_ht_params iwl5000_ht_params = {
	.ht_greenfield_support = true,
+0 −3
Original line number Diff line number Diff line
@@ -437,7 +437,6 @@ static struct iwl_base_params iwl6000_base_params = {
	.chain_noise_scale = 1000,
	.wd_timeout = IWL_DEF_WD_TIMEOUT,
	.max_event_log_size = 512,
	.ucode_tracing = true,
	.shadow_reg_enable = true,
};

@@ -456,7 +455,6 @@ static struct iwl_base_params iwl6050_base_params = {
	.chain_noise_scale = 1500,
	.wd_timeout = IWL_DEF_WD_TIMEOUT,
	.max_event_log_size = 1024,
	.ucode_tracing = true,
	.shadow_reg_enable = true,
};
static struct iwl_base_params iwl6000_g2_base_params = {
@@ -474,7 +472,6 @@ static struct iwl_base_params iwl6000_g2_base_params = {
	.chain_noise_scale = 1000,
	.wd_timeout = IWL_LONG_WD_TIMEOUT,
	.max_event_log_size = 512,
	.ucode_tracing = true,
	.shadow_reg_enable = true,
};

+0 −2
Original line number Diff line number Diff line
@@ -249,7 +249,6 @@ struct iwl_mod_params {
 * @wd_timeout: TX queues watchdog timeout
 * @temperature_kelvin: temperature report by uCode in kelvin
 * @max_event_log_size: size of event log buffer size for ucode event logging
 * @ucode_tracing: support ucode continuous tracing
 * @shadow_reg_enable: HW shadhow register bit
 */
struct iwl_base_params {
@@ -271,7 +270,6 @@ struct iwl_base_params {
	unsigned int wd_timeout;
	bool temperature_kelvin;
	u32 max_event_log_size;
	const bool ucode_tracing;
	const bool shadow_reg_enable;
};
/*
Loading