bool update_clamp_threshold;
bool program_deskew_time;
bool raw_violation_fixup;
+ bool update_fc_timer;
struct {
struct {
u32 rp_ectl_2_r1;
value |= soc->update_fc_threshold;
writel(value, port->base + RP_VEND_XP);
}
+
+ if (soc->update_fc_timer) {
+ value = readl(port->base + RP_VEND_XP);
+ value &= ~RP_VEND_XP_UPDATE_FC_THRESHOLD_MASK;
+ value |= soc->update_fc_threshold;
+ writel(value, port->base + RP_VEND_XP);
+ }
}
static void tegra_pcie_port_enable(struct tegra_pcie_port *port)
.update_clamp_threshold = false,
.program_deskew_time = false,
.raw_violation_fixup = false,
+ .update_fc_timer = false,
.ectl.enable = false,
};
.update_clamp_threshold = false,
.program_deskew_time = false,
.raw_violation_fixup = false,
+ .update_fc_timer = false,
.ectl.enable = false,
};
.update_clamp_threshold = true,
.program_deskew_time = false,
.raw_violation_fixup = true,
+ .update_fc_timer = false,
.ectl.enable = false,
};
.pads_pll_ctl = PADS_PLL_CTL_TEGRA30,
.tx_ref_sel = PADS_PLL_CTL_TXCLKREF_BUF_EN,
.pads_refclk_cfg0 = 0x90b890b8,
+ /* FC threshold is bit[25:18] */
+ .update_fc_threshold = 0x01800000,
.has_pex_clkreq_en = true,
.has_pex_bias_ctrl = true,
.has_intr_prsnt_sense = true,
.update_clamp_threshold = true,
.program_deskew_time = true,
.raw_violation_fixup = false,
+ .update_fc_timer = true,
.ectl = {
.regs = {
.rp_ectl_2_r1 = 0x0000000f,
.update_clamp_threshold = false,
.program_deskew_time = false,
.raw_violation_fixup = false,
+ .update_fc_timer = false,
.ectl.enable = false,
};