Merge https://gitlab.denx.de/u-boot/custodians/u-boot-fsl-qoriq
[oweals/u-boot.git] / drivers / ddr / altera / sequencer.c
index 2baf77dd7782e491be6c20d1cd73c0eee3b6e77c..b85b56efe5d8fc4130b0967c84141004466cc6b5 100644 (file)
@@ -1,7 +1,6 @@
+// SPDX-License-Identifier: BSD-3-Clause
 /*
  * Copyright Altera Corporation (C) 2012-2015
- *
- * SPDX-License-Identifier:    BSD-3-Clause
  */
 
 #include <common.h>
@@ -9,33 +8,26 @@
 #include <asm/arch/sdram.h>
 #include <errno.h>
 #include "sequencer.h"
-#include "sequencer_auto.h"
-#include "sequencer_auto_ac_init.h"
-#include "sequencer_auto_inst_init.h"
-#include "sequencer_defines.h"
-
-static struct socfpga_sdr_rw_load_manager *sdr_rw_load_mgr_regs =
-       (struct socfpga_sdr_rw_load_manager *)(SDR_PHYGRP_RWMGRGRP_ADDRESS | 0x800);
 
-static struct socfpga_sdr_rw_load_jump_manager *sdr_rw_load_jump_mgr_regs =
-       (struct socfpga_sdr_rw_load_jump_manager *)(SDR_PHYGRP_RWMGRGRP_ADDRESS | 0xC00);
-
-static struct socfpga_sdr_reg_file *sdr_reg_file =
+static const struct socfpga_sdr_rw_load_manager *sdr_rw_load_mgr_regs =
+       (struct socfpga_sdr_rw_load_manager *)
+               (SDR_PHYGRP_RWMGRGRP_ADDRESS | 0x800);
+static const struct socfpga_sdr_rw_load_jump_manager *sdr_rw_load_jump_mgr_regs
+       = (struct socfpga_sdr_rw_load_jump_manager *)
+               (SDR_PHYGRP_RWMGRGRP_ADDRESS | 0xC00);
+static const struct socfpga_sdr_reg_file *sdr_reg_file =
        (struct socfpga_sdr_reg_file *)SDR_PHYGRP_REGFILEGRP_ADDRESS;
-
-static struct socfpga_sdr_scc_mgr *sdr_scc_mgr =
-       (struct socfpga_sdr_scc_mgr *)(SDR_PHYGRP_SCCGRP_ADDRESS | 0xe00);
-
-static struct socfpga_phy_mgr_cmd *phy_mgr_cmd =
+static const struct socfpga_sdr_scc_mgr *sdr_scc_mgr =
+       (struct socfpga_sdr_scc_mgr *)
+               (SDR_PHYGRP_SCCGRP_ADDRESS | 0xe00);
+static const struct socfpga_phy_mgr_cmd *phy_mgr_cmd =
        (struct socfpga_phy_mgr_cmd *)SDR_PHYGRP_PHYMGRGRP_ADDRESS;
-
-static struct socfpga_phy_mgr_cfg *phy_mgr_cfg =
-       (struct socfpga_phy_mgr_cfg *)(SDR_PHYGRP_PHYMGRGRP_ADDRESS | 0x40);
-
-static struct socfpga_data_mgr *data_mgr =
+static const struct socfpga_phy_mgr_cfg *phy_mgr_cfg =
+       (struct socfpga_phy_mgr_cfg *)
+               (SDR_PHYGRP_PHYMGRGRP_ADDRESS | 0x40);
+static const struct socfpga_data_mgr *data_mgr =
        (struct socfpga_data_mgr *)SDR_PHYGRP_DATAMGRGRP_ADDRESS;
-
-static struct socfpga_sdr_ctrl *sdr_ctrl =
+static const struct socfpga_sdr_ctrl *sdr_ctrl =
        (struct socfpga_sdr_ctrl *)SDR_CTRLGRP_ADDRESS;
 
 #define DELTA_D                1
@@ -59,38 +51,20 @@ static struct socfpga_sdr_ctrl *sdr_ctrl =
 #define STATIC_CALIB_STEPS (STATIC_IN_RTL_SIM | CALIB_SKIP_FULL_TEST | \
        STATIC_SKIP_DELAY_LOOPS)
 
-/* calibration steps requested by the rtl */
-uint16_t dyn_calib_steps;
-
-/*
- * To make CALIB_SKIP_DELAY_LOOPS a dynamic conditional option
- * instead of static, we use boolean logic to select between
- * non-skip and skip values
- *
- * The mask is set to include all bits when not-skipping, but is
- * zero when skipping
- */
-
-uint16_t skip_delay_mask;      /* mask off bits when skipping/not-skipping */
-
 #define SKIP_DELAY_LOOP_VALUE_OR_ZERO(non_skip_value) \
-       ((non_skip_value) & skip_delay_mask)
-
-struct gbl_type *gbl;
-struct param_type *param;
-uint32_t curr_shadow_reg;
+       ((non_skip_value) & seq->skip_delay_mask)
 
-static void set_failing_group_stage(uint32_t group, uint32_t stage,
-       uint32_t substage)
+static void set_failing_group_stage(struct socfpga_sdrseq *seq,
+                                   u32 group, u32 stage, u32 substage)
 {
        /*
         * Only set the global stage if there was not been any other
         * failing group
         */
-       if (gbl->error_stage == CAL_STAGE_NIL)  {
-               gbl->error_substage = substage;
-               gbl->error_stage = stage;
-               gbl->error_group = group;
+       if (seq->gbl.error_stage == CAL_STAGE_NIL)      {
+               seq->gbl.error_substage = substage;
+               seq->gbl.error_stage = stage;
+               seq->gbl.error_group = group;
        }
 }
 
@@ -115,7 +89,7 @@ static void reg_file_set_sub_stage(u8 set_sub_stage)
  *
  * Initialize PHY Manager.
  */
-static void phy_mgr_initialize(void)
+static void phy_mgr_initialize(struct socfpga_sdrseq *seq)
 {
        u32 ratio;
 
@@ -137,18 +111,17 @@ static void phy_mgr_initialize(void)
        writel(0, &phy_mgr_cfg->cal_debug_info);
 
        /* Init params only if we do NOT skip calibration. */
-       if ((dyn_calib_steps & CALIB_SKIP_ALL) == CALIB_SKIP_ALL)
+       if ((seq->dyn_calib_steps & CALIB_SKIP_ALL) == CALIB_SKIP_ALL)
                return;
 
-       ratio = RW_MGR_MEM_DQ_PER_READ_DQS /
-               RW_MGR_MEM_VIRTUAL_GROUPS_PER_READ_DQS;
-       param->read_correct_mask_vg = (1 << ratio) - 1;
-       param->write_correct_mask_vg = (1 << ratio) - 1;
-       param->read_correct_mask = (1 << RW_MGR_MEM_DQ_PER_READ_DQS) - 1;
-       param->write_correct_mask = (1 << RW_MGR_MEM_DQ_PER_WRITE_DQS) - 1;
-       ratio = RW_MGR_MEM_DATA_WIDTH /
-               RW_MGR_MEM_DATA_MASK_WIDTH;
-       param->dm_correct_mask = (1 << ratio) - 1;
+       ratio = seq->rwcfg->mem_dq_per_read_dqs /
+               seq->rwcfg->mem_virtual_groups_per_read_dqs;
+       seq->param.read_correct_mask_vg = (1 << ratio) - 1;
+       seq->param.write_correct_mask_vg = (1 << ratio) - 1;
+       seq->param.read_correct_mask = (1 << seq->rwcfg->mem_dq_per_read_dqs)
+               - 1;
+       seq->param.write_correct_mask = (1 << seq->rwcfg->mem_dq_per_write_dqs)
+               - 1;
 }
 
 /**
@@ -158,7 +131,8 @@ static void phy_mgr_initialize(void)
  *
  * Set Rank and ODT mask (On-Die Termination).
  */
-static void set_rank_and_odt_mask(const u32 rank, const u32 odt_mode)
+static void set_rank_and_odt_mask(struct socfpga_sdrseq *seq,
+                                 const u32 rank, const u32 odt_mode)
 {
        u32 odt_mask_0 = 0;
        u32 odt_mask_1 = 0;
@@ -168,14 +142,14 @@ static void set_rank_and_odt_mask(const u32 rank, const u32 odt_mode)
                odt_mask_0 = 0x0;
                odt_mask_1 = 0x0;
        } else {        /* RW_MGR_ODT_MODE_READ_WRITE */
-               switch (RW_MGR_MEM_NUMBER_OF_RANKS) {
+               switch (seq->rwcfg->mem_number_of_ranks) {
                case 1: /* 1 Rank */
                        /* Read: ODT = 0 ; Write: ODT = 1 */
                        odt_mask_0 = 0x0;
                        odt_mask_1 = 0x1;
                        break;
                case 2: /* 2 Ranks */
-                       if (RW_MGR_MEM_NUMBER_OF_CS_PER_DIMM == 1) {
+                       if (seq->rwcfg->mem_number_of_cs_per_dimm == 1) {
                                /*
                                 * - Dual-Slot , Single-Rank (1 CS per DIMM)
                                 *   OR
@@ -284,63 +258,74 @@ static void scc_mgr_initialize(void)
        int i;
 
        for (i = 0; i < 16; i++) {
-               debug_cond(DLEVEL == 1, "%s:%d: Clearing SCC RFILE index %u\n",
+               debug_cond(DLEVEL >= 1, "%s:%d: Clearing SCC RFILE index %u\n",
                           __func__, __LINE__, i);
-               scc_mgr_set(SCC_MGR_HHP_RFILE_OFFSET, 0, i);
+               scc_mgr_set(SCC_MGR_HHP_RFILE_OFFSET, i, 0);
        }
 }
 
-static void scc_mgr_set_dqdqs_output_phase(uint32_t write_group, uint32_t phase)
+static void scc_mgr_set_dqdqs_output_phase(u32 write_group, u32 phase)
 {
        scc_mgr_set(SCC_MGR_DQDQS_OUT_PHASE_OFFSET, write_group, phase);
 }
 
-static void scc_mgr_set_dqs_bus_in_delay(uint32_t read_group, uint32_t delay)
+static void scc_mgr_set_dqs_bus_in_delay(u32 read_group, u32 delay)
 {
        scc_mgr_set(SCC_MGR_DQS_IN_DELAY_OFFSET, read_group, delay);
 }
 
-static void scc_mgr_set_dqs_en_phase(uint32_t read_group, uint32_t phase)
+static void scc_mgr_set_dqs_en_phase(u32 read_group, u32 phase)
 {
        scc_mgr_set(SCC_MGR_DQS_EN_PHASE_OFFSET, read_group, phase);
 }
 
-static void scc_mgr_set_dqs_en_delay(uint32_t read_group, uint32_t delay)
+static void scc_mgr_set_dqs_en_delay(u32 read_group, u32 delay)
 {
        scc_mgr_set(SCC_MGR_DQS_EN_DELAY_OFFSET, read_group, delay);
 }
 
-static void scc_mgr_set_dqs_io_in_delay(uint32_t delay)
+static void scc_mgr_set_dq_in_delay(u32 dq_in_group, u32 delay)
 {
-       scc_mgr_set(SCC_MGR_IO_IN_DELAY_OFFSET, RW_MGR_MEM_DQ_PER_WRITE_DQS,
-                   delay);
+       scc_mgr_set(SCC_MGR_IO_IN_DELAY_OFFSET, dq_in_group, delay);
 }
 
-static void scc_mgr_set_dq_in_delay(uint32_t dq_in_group, uint32_t delay)
+static void scc_mgr_set_dqs_io_in_delay(struct socfpga_sdrseq *seq,
+                                       u32 delay)
 {
-       scc_mgr_set(SCC_MGR_IO_IN_DELAY_OFFSET, dq_in_group, delay);
+       scc_mgr_set(SCC_MGR_IO_IN_DELAY_OFFSET,
+                   seq->rwcfg->mem_dq_per_write_dqs, delay);
 }
 
-static void scc_mgr_set_dq_out1_delay(uint32_t dq_in_group, uint32_t delay)
+static void scc_mgr_set_dm_in_delay(struct socfpga_sdrseq *seq, u32 dm,
+                                   u32 delay)
+{
+       scc_mgr_set(SCC_MGR_IO_IN_DELAY_OFFSET,
+                   seq->rwcfg->mem_dq_per_write_dqs + 1 + dm,
+                   delay);
+}
+
+static void scc_mgr_set_dq_out1_delay(u32 dq_in_group, u32 delay)
 {
        scc_mgr_set(SCC_MGR_IO_OUT1_DELAY_OFFSET, dq_in_group, delay);
 }
 
-static void scc_mgr_set_dqs_out1_delay(uint32_t delay)
+static void scc_mgr_set_dqs_out1_delay(struct socfpga_sdrseq *seq,
+                                      u32 delay)
 {
-       scc_mgr_set(SCC_MGR_IO_OUT1_DELAY_OFFSET, RW_MGR_MEM_DQ_PER_WRITE_DQS,
-                   delay);
+       scc_mgr_set(SCC_MGR_IO_OUT1_DELAY_OFFSET,
+                   seq->rwcfg->mem_dq_per_write_dqs, delay);
 }
 
-static void scc_mgr_set_dm_out1_delay(uint32_t dm, uint32_t delay)
+static void scc_mgr_set_dm_out1_delay(struct socfpga_sdrseq *seq, u32 dm,
+                                     u32 delay)
 {
        scc_mgr_set(SCC_MGR_IO_OUT1_DELAY_OFFSET,
-                   RW_MGR_MEM_DQ_PER_WRITE_DQS + 1 + dm,
+                   seq->rwcfg->mem_dq_per_write_dqs + 1 + dm,
                    delay);
 }
 
 /* load up dqs config settings */
-static void scc_mgr_load_dqs(uint32_t dqs)
+static void scc_mgr_load_dqs(u32 dqs)
 {
        writel(dqs, &sdr_scc_mgr->dqs_ena);
 }
@@ -352,13 +337,13 @@ static void scc_mgr_load_dqs_io(void)
 }
 
 /* load up dq config settings */
-static void scc_mgr_load_dq(uint32_t dq_in_group)
+static void scc_mgr_load_dq(u32 dq_in_group)
 {
        writel(dq_in_group, &sdr_scc_mgr->dq_ena);
 }
 
 /* load up dm config settings */
-static void scc_mgr_load_dm(uint32_t dm)
+static void scc_mgr_load_dm(u32 dm)
 {
        writel(dm, &sdr_scc_mgr->dm_ena);
 }
@@ -373,12 +358,13 @@ static void scc_mgr_load_dm(uint32_t dm)
  * This function sets the SCC Manager (Scan Chain Control Manager) register
  * and optionally triggers the SCC update for all ranks.
  */
-static void scc_mgr_set_all_ranks(const u32 off, const u32 grp, const u32 val,
+static void scc_mgr_set_all_ranks(struct socfpga_sdrseq *seq,
+                                 const u32 off, const u32 grp, const u32 val,
                                  const int update)
 {
        u32 r;
 
-       for (r = 0; r < RW_MGR_MEM_NUMBER_OF_RANKS;
+       for (r = 0; r < seq->rwcfg->mem_number_of_ranks;
             r += NUM_RANKS_PER_SHADOW_REG) {
                scc_mgr_set(off, grp, val);
 
@@ -389,7 +375,8 @@ static void scc_mgr_set_all_ranks(const u32 off, const u32 grp, const u32 val,
        }
 }
 
-static void scc_mgr_set_dqs_en_phase_all_ranks(u32 read_group, u32 phase)
+static void scc_mgr_set_dqs_en_phase_all_ranks(struct socfpga_sdrseq *seq,
+                                              u32 read_group, u32 phase)
 {
        /*
         * USER although the h/w doesn't support different phases per
@@ -399,12 +386,12 @@ static void scc_mgr_set_dqs_en_phase_all_ranks(u32 read_group, u32 phase)
         * for efficiency, the scan chain update should occur only
         * once to sr0.
         */
-       scc_mgr_set_all_ranks(SCC_MGR_DQS_EN_PHASE_OFFSET,
+       scc_mgr_set_all_ranks(seq, SCC_MGR_DQS_EN_PHASE_OFFSET,
                              read_group, phase, 0);
 }
 
-static void scc_mgr_set_dqdqs_output_phase_all_ranks(uint32_t write_group,
-                                                    uint32_t phase)
+static void scc_mgr_set_dqdqs_output_phase_all_ranks(struct socfpga_sdrseq *seq,
+                                                    u32 write_group, u32 phase)
 {
        /*
         * USER although the h/w doesn't support different phases per
@@ -414,12 +401,12 @@ static void scc_mgr_set_dqdqs_output_phase_all_ranks(uint32_t write_group,
         * for efficiency, the scan chain update should occur only
         * once to sr0.
         */
-       scc_mgr_set_all_ranks(SCC_MGR_DQDQS_OUT_PHASE_OFFSET,
+       scc_mgr_set_all_ranks(seq, SCC_MGR_DQDQS_OUT_PHASE_OFFSET,
                              write_group, phase, 0);
 }
 
-static void scc_mgr_set_dqs_en_delay_all_ranks(uint32_t read_group,
-                                              uint32_t delay)
+static void scc_mgr_set_dqs_en_delay_all_ranks(struct socfpga_sdrseq *seq,
+                                              u32 read_group, u32 delay)
 {
        /*
         * In shadow register mode, the T11 settings are stored in
@@ -429,9 +416,8 @@ static void scc_mgr_set_dqs_en_delay_all_ranks(uint32_t read_group,
         * select_shadow_regs_for_update with update_scan_chains
         * set to 0.
         */
-       scc_mgr_set_all_ranks(SCC_MGR_DQS_EN_DELAY_OFFSET,
+       scc_mgr_set_all_ranks(seq, SCC_MGR_DQS_EN_DELAY_OFFSET,
                              read_group, delay, 1);
-       writel(0, &sdr_scc_mgr->update);
 }
 
 /**
@@ -441,10 +427,11 @@ static void scc_mgr_set_dqs_en_delay_all_ranks(uint32_t read_group,
  *
  * This function sets the OCT output delay in SCC manager.
  */
-static void scc_mgr_set_oct_out1_delay(const u32 write_group, const u32 delay)
+static void scc_mgr_set_oct_out1_delay(struct socfpga_sdrseq *seq,
+                                      const u32 write_group, const u32 delay)
 {
-       const int ratio = RW_MGR_MEM_IF_READ_DQS_WIDTH /
-                         RW_MGR_MEM_IF_WRITE_DQS_WIDTH;
+       const int ratio = seq->rwcfg->mem_if_read_dqs_width /
+                        seq->rwcfg->mem_if_write_dqs_width;
        const int base = write_group * ratio;
        int i;
        /*
@@ -480,10 +467,10 @@ static void scc_mgr_set_hhp_extras(void)
                         SCC_MGR_HHP_GLOBALS_OFFSET |
                         SCC_MGR_HHP_EXTRAS_OFFSET;
 
-       debug_cond(DLEVEL == 1, "%s:%d Setting HHP Extras\n",
+       debug_cond(DLEVEL >= 1, "%s:%d Setting HHP Extras\n",
                   __func__, __LINE__);
        writel(value, addr);
-       debug_cond(DLEVEL == 1, "%s:%d Done Setting HHP Extras\n",
+       debug_cond(DLEVEL >= 1, "%s:%d Done Setting HHP Extras\n",
                   __func__, __LINE__);
 }
 
@@ -492,7 +479,7 @@ static void scc_mgr_set_hhp_extras(void)
  *
  * Zero all DQS config.
  */
-static void scc_mgr_zero_all(void)
+static void scc_mgr_zero_all(struct socfpga_sdrseq *seq)
 {
        int i, r;
 
@@ -500,23 +487,26 @@ static void scc_mgr_zero_all(void)
         * USER Zero all DQS config settings, across all groups and all
         * shadow registers
         */
-       for (r = 0; r < RW_MGR_MEM_NUMBER_OF_RANKS;
+       for (r = 0; r < seq->rwcfg->mem_number_of_ranks;
             r += NUM_RANKS_PER_SHADOW_REG) {
-               for (i = 0; i < RW_MGR_MEM_IF_READ_DQS_WIDTH; i++) {
+               for (i = 0; i < seq->rwcfg->mem_if_read_dqs_width; i++) {
                        /*
                         * The phases actually don't exist on a per-rank basis,
                         * but there's no harm updating them several times, so
                         * let's keep the code simple.
                         */
-                       scc_mgr_set_dqs_bus_in_delay(i, IO_DQS_IN_RESERVE);
+                       scc_mgr_set_dqs_bus_in_delay(i,
+                                                    seq->iocfg->dqs_in_reserve
+                                                    );
                        scc_mgr_set_dqs_en_phase(i, 0);
                        scc_mgr_set_dqs_en_delay(i, 0);
                }
 
-               for (i = 0; i < RW_MGR_MEM_IF_WRITE_DQS_WIDTH; i++) {
+               for (i = 0; i < seq->rwcfg->mem_if_write_dqs_width; i++) {
                        scc_mgr_set_dqdqs_output_phase(i, 0);
                        /* Arria V/Cyclone V don't have out2. */
-                       scc_mgr_set_oct_out1_delay(i, IO_DQS_OUT_RESERVE);
+                       scc_mgr_set_oct_out1_delay(seq, i,
+                                                  seq->iocfg->dqs_out_reserve);
                }
        }
 
@@ -553,10 +543,11 @@ static void scc_set_bypass_mode(const u32 write_group)
  *
  * Load DQS settings for Write Group, do not trigger SCC update.
  */
-static void scc_mgr_load_dqs_for_write_group(const u32 write_group)
+static void scc_mgr_load_dqs_for_write_group(struct socfpga_sdrseq *seq,
+                                            const u32 write_group)
 {
-       const int ratio = RW_MGR_MEM_IF_READ_DQS_WIDTH /
-                         RW_MGR_MEM_IF_WRITE_DQS_WIDTH;
+       const int ratio = seq->rwcfg->mem_if_read_dqs_width /
+                         seq->rwcfg->mem_if_write_dqs_width;
        const int base = write_group * ratio;
        int i;
        /*
@@ -575,14 +566,15 @@ static void scc_mgr_load_dqs_for_write_group(const u32 write_group)
  *
  * Zero DQ, DM, DQS and OCT configs for a group.
  */
-static void scc_mgr_zero_group(const u32 write_group, const int out_only)
+static void scc_mgr_zero_group(struct socfpga_sdrseq *seq,
+                              const u32 write_group, const int out_only)
 {
        int i, r;
 
-       for (r = 0; r < RW_MGR_MEM_NUMBER_OF_RANKS;
+       for (r = 0; r < seq->rwcfg->mem_number_of_ranks;
             r += NUM_RANKS_PER_SHADOW_REG) {
                /* Zero all DQ config settings. */
-               for (i = 0; i < RW_MGR_MEM_DQ_PER_WRITE_DQS; i++) {
+               for (i = 0; i < seq->rwcfg->mem_dq_per_write_dqs; i++) {
                        scc_mgr_set_dq_out1_delay(i, 0);
                        if (!out_only)
                                scc_mgr_set_dq_in_delay(i, 0);
@@ -592,20 +584,24 @@ static void scc_mgr_zero_group(const u32 write_group, const int out_only)
                writel(0xff, &sdr_scc_mgr->dq_ena);
 
                /* Zero all DM config settings. */
-               for (i = 0; i < RW_MGR_NUM_DM_PER_WRITE_GROUP; i++)
-                       scc_mgr_set_dm_out1_delay(i, 0);
+               for (i = 0; i < RW_MGR_NUM_DM_PER_WRITE_GROUP; i++) {
+                       if (!out_only)
+                               scc_mgr_set_dm_in_delay(seq, i, 0);
+                       scc_mgr_set_dm_out1_delay(seq, i, 0);
+               }
 
                /* Multicast to all DM enables. */
                writel(0xff, &sdr_scc_mgr->dm_ena);
 
                /* Zero all DQS IO settings. */
                if (!out_only)
-                       scc_mgr_set_dqs_io_in_delay(0);
+                       scc_mgr_set_dqs_io_in_delay(seq, 0);
 
                /* Arria V/Cyclone V don't have out2. */
-               scc_mgr_set_dqs_out1_delay(IO_DQS_OUT_RESERVE);
-               scc_mgr_set_oct_out1_delay(write_group, IO_DQS_OUT_RESERVE);
-               scc_mgr_load_dqs_for_write_group(write_group);
+               scc_mgr_set_dqs_out1_delay(seq, seq->iocfg->dqs_out_reserve);
+               scc_mgr_set_oct_out1_delay(seq, write_group,
+                                          seq->iocfg->dqs_out_reserve);
+               scc_mgr_load_dqs_for_write_group(seq, write_group);
 
                /* Multicast to all DQS IO enables (only 1 in total). */
                writel(0, &sdr_scc_mgr->dqs_io_ena);
@@ -619,69 +615,76 @@ static void scc_mgr_zero_group(const u32 write_group, const int out_only)
  * apply and load a particular input delay for the DQ pins in a group
  * group_bgn is the index of the first dq pin (in the write group)
  */
-static void scc_mgr_apply_group_dq_in_delay(uint32_t group_bgn, uint32_t delay)
+static void scc_mgr_apply_group_dq_in_delay(struct socfpga_sdrseq *seq,
+                                           u32 group_bgn, u32 delay)
 {
-       uint32_t i, p;
+       u32 i, p;
 
-       for (i = 0, p = group_bgn; i < RW_MGR_MEM_DQ_PER_READ_DQS; i++, p++) {
+       for (i = 0, p = group_bgn; i < seq->rwcfg->mem_dq_per_read_dqs;
+            i++, p++) {
                scc_mgr_set_dq_in_delay(p, delay);
                scc_mgr_load_dq(p);
        }
 }
 
 /**
- * scc_mgr_apply_group_dq_out1_delay() - Apply and load an output delay for the DQ pins in a group
+ * scc_mgr_apply_group_dq_out1_delay() - Apply and load an output delay for the
+ * DQ pins in a group
  * @delay:             Delay value
  *
  * Apply and load a particular output delay for the DQ pins in a group.
  */
-static void scc_mgr_apply_group_dq_out1_delay(const u32 delay)
+static void scc_mgr_apply_group_dq_out1_delay(struct socfpga_sdrseq *seq,
+                                             const u32 delay)
 {
        int i;
 
-       for (i = 0; i < RW_MGR_MEM_DQ_PER_WRITE_DQS; i++) {
+       for (i = 0; i < seq->rwcfg->mem_dq_per_write_dqs; i++) {
                scc_mgr_set_dq_out1_delay(i, delay);
                scc_mgr_load_dq(i);
        }
 }
 
 /* apply and load a particular output delay for the DM pins in a group */
-static void scc_mgr_apply_group_dm_out1_delay(uint32_t delay1)
+static void scc_mgr_apply_group_dm_out1_delay(struct socfpga_sdrseq *seq,
+                                             u32 delay1)
 {
-       uint32_t i;
+       u32 i;
 
        for (i = 0; i < RW_MGR_NUM_DM_PER_WRITE_GROUP; i++) {
-               scc_mgr_set_dm_out1_delay(i, delay1);
+               scc_mgr_set_dm_out1_delay(seq, i, delay1);
                scc_mgr_load_dm(i);
        }
 }
 
 
 /* apply and load delay on both DQS and OCT out1 */
-static void scc_mgr_apply_group_dqs_io_and_oct_out1(uint32_t write_group,
-                                                   uint32_t delay)
+static void scc_mgr_apply_group_dqs_io_and_oct_out1(struct socfpga_sdrseq *seq,
+                                                   u32 write_group, u32 delay)
 {
-       scc_mgr_set_dqs_out1_delay(delay);
+       scc_mgr_set_dqs_out1_delay(seq, delay);
        scc_mgr_load_dqs_io();
 
-       scc_mgr_set_oct_out1_delay(write_group, delay);
-       scc_mgr_load_dqs_for_write_group(write_group);
+       scc_mgr_set_oct_out1_delay(seq, write_group, delay);
+       scc_mgr_load_dqs_for_write_group(seq, write_group);
 }
 
 /**
- * scc_mgr_apply_group_all_out_delay_add() - Apply a delay to the entire output side: DQ, DM, DQS, OCT
+ * scc_mgr_apply_group_all_out_delay_add() - Apply a delay to the entire output
+ * side: DQ, DM, DQS, OCT
  * @write_group:       Write group
  * @delay:             Delay value
  *
  * Apply a delay to the entire output side: DQ, DM, DQS, OCT.
  */
-static void scc_mgr_apply_group_all_out_delay_add(const u32 write_group,
+static void scc_mgr_apply_group_all_out_delay_add(struct socfpga_sdrseq *seq,
+                                                 const u32 write_group,
                                                  const u32 delay)
 {
        u32 i, new_delay;
 
        /* DQ shift */
-       for (i = 0; i < RW_MGR_MEM_DQ_PER_WRITE_DQS; i++)
+       for (i = 0; i < seq->rwcfg->mem_dq_per_write_dqs; i++)
                scc_mgr_load_dq(i);
 
        /* DM shift */
@@ -690,49 +693,51 @@ static void scc_mgr_apply_group_all_out_delay_add(const u32 write_group,
 
        /* DQS shift */
        new_delay = READ_SCC_DQS_IO_OUT2_DELAY + delay;
-       if (new_delay > IO_IO_OUT2_DELAY_MAX) {
-               debug_cond(DLEVEL == 1,
+       if (new_delay > seq->iocfg->io_out2_delay_max) {
+               debug_cond(DLEVEL >= 1,
                           "%s:%d (%u, %u) DQS: %u > %d; adding %u to OUT1\n",
                           __func__, __LINE__, write_group, delay, new_delay,
-                          IO_IO_OUT2_DELAY_MAX,
-                          new_delay - IO_IO_OUT2_DELAY_MAX);
-               new_delay -= IO_IO_OUT2_DELAY_MAX;
-               scc_mgr_set_dqs_out1_delay(new_delay);
+                          seq->iocfg->io_out2_delay_max,
+                          new_delay - seq->iocfg->io_out2_delay_max);
+               new_delay -= seq->iocfg->io_out2_delay_max;
+               scc_mgr_set_dqs_out1_delay(seq, new_delay);
        }
 
        scc_mgr_load_dqs_io();
 
        /* OCT shift */
        new_delay = READ_SCC_OCT_OUT2_DELAY + delay;
-       if (new_delay > IO_IO_OUT2_DELAY_MAX) {
-               debug_cond(DLEVEL == 1,
+       if (new_delay > seq->iocfg->io_out2_delay_max) {
+               debug_cond(DLEVEL >= 1,
                           "%s:%d (%u, %u) DQS: %u > %d; adding %u to OUT1\n",
                           __func__, __LINE__, write_group, delay,
-                          new_delay, IO_IO_OUT2_DELAY_MAX,
-                          new_delay - IO_IO_OUT2_DELAY_MAX);
-               new_delay -= IO_IO_OUT2_DELAY_MAX;
-               scc_mgr_set_oct_out1_delay(write_group, new_delay);
+                          new_delay, seq->iocfg->io_out2_delay_max,
+                          new_delay - seq->iocfg->io_out2_delay_max);
+               new_delay -= seq->iocfg->io_out2_delay_max;
+               scc_mgr_set_oct_out1_delay(seq, write_group, new_delay);
        }
 
-       scc_mgr_load_dqs_for_write_group(write_group);
+       scc_mgr_load_dqs_for_write_group(seq, write_group);
 }
 
 /**
- * scc_mgr_apply_group_all_out_delay_add() - Apply a delay to the entire output side to all ranks
+ * scc_mgr_apply_group_all_out_delay_add() - Apply a delay to the entire output
+ * side to all ranks
  * @write_group:       Write group
  * @delay:             Delay value
  *
  * Apply a delay to the entire output side (DQ, DM, DQS, OCT) to all ranks.
  */
 static void
-scc_mgr_apply_group_all_out_delay_add_all_ranks(const u32 write_group,
+scc_mgr_apply_group_all_out_delay_add_all_ranks(struct socfpga_sdrseq *seq,
+                                               const u32 write_group,
                                                const u32 delay)
 {
        int r;
 
-       for (r = 0; r < RW_MGR_MEM_NUMBER_OF_RANKS;
+       for (r = 0; r < seq->rwcfg->mem_number_of_ranks;
             r += NUM_RANKS_PER_SHADOW_REG) {
-               scc_mgr_apply_group_all_out_delay_add(write_group, delay);
+               scc_mgr_apply_group_all_out_delay_add(seq, write_group, delay);
                writel(0, &sdr_scc_mgr->update);
        }
 }
@@ -743,7 +748,7 @@ scc_mgr_apply_group_all_out_delay_add_all_ranks(const u32 write_group,
  * Optimization used to recover some slots in ddr3 inst_rom could be
  * applied to other protocols if we wanted to
  */
-static void set_jump_as_return(void)
+static void set_jump_as_return(struct socfpga_sdrseq *seq)
 {
        /*
         * To save space, we replace return with jump to special shared
@@ -751,48 +756,40 @@ static void set_jump_as_return(void)
         * we always jump.
         */
        writel(0xff, &sdr_rw_load_mgr_regs->load_cntr0);
-       writel(RW_MGR_RETURN, &sdr_rw_load_jump_mgr_regs->load_jump_add0);
+       writel(seq->rwcfg->rreturn, &sdr_rw_load_jump_mgr_regs->load_jump_add0);
 }
 
-/*
- * should always use constants as argument to ensure all computations are
- * performed at compile time
+/**
+ * delay_for_n_mem_clocks() - Delay for N memory clocks
+ * @clocks:    Length of the delay
+ *
+ * Delay for N memory clocks.
  */
-static void delay_for_n_mem_clocks(const uint32_t clocks)
+static void delay_for_n_mem_clocks(struct socfpga_sdrseq *seq,
+                                  const u32 clocks)
 {
-       uint32_t afi_clocks;
-       uint8_t inner = 0;
-       uint8_t outer = 0;
-       uint16_t c_loop = 0;
+       u32 afi_clocks;
+       u16 c_loop;
+       u8 inner;
+       u8 outer;
 
        debug("%s:%d: clocks=%u ... start\n", __func__, __LINE__, clocks);
 
-
-       afi_clocks = (clocks + AFI_RATE_RATIO-1) / AFI_RATE_RATIO;
-       /* scale (rounding up) to get afi clocks */
+       /* Scale (rounding up) to get afi clocks. */
+       afi_clocks = DIV_ROUND_UP(clocks, seq->misccfg->afi_rate_ratio);
+       if (afi_clocks) /* Temporary underflow protection */
+               afi_clocks--;
 
        /*
-        * Note, we don't bother accounting for being off a little bit
-        * because of a few extra instructions in outer loops
-        * Note, the loops have a test at the end, and do the test before
-        * the decrement, and so always perform the loop
+        * Note, we don't bother accounting for being off a little
+        * bit because of a few extra instructions in outer loops.
+        * Note, the loops have a test at the end, and do the test
+        * before the decrement, and so always perform the loop
         * 1 time more than the counter value
         */
-       if (afi_clocks == 0) {
-               ;
-       } else if (afi_clocks <= 0x100) {
-               inner = afi_clocks-1;
-               outer = 0;
-               c_loop = 0;
-       } else if (afi_clocks <= 0x10000) {
-               inner = 0xff;
-               outer = (afi_clocks-1) >> 8;
-               c_loop = 0;
-       } else {
-               inner = 0xff;
-               outer = 0xff;
-               c_loop = (afi_clocks-1) >> 16;
-       }
+       c_loop = afi_clocks >> 16;
+       outer = c_loop ? 0xff : (afi_clocks >> 8);
+       inner = outer ? 0xff : afi_clocks;
 
        /*
         * rom instructions are structured as follows:
@@ -811,40 +808,33 @@ static void delay_for_n_mem_clocks(const uint32_t clocks)
         * and sequencer rom and keeps the delays more accurate and reduces
         * overhead
         */
-       if (afi_clocks <= 0x100) {
+       if (afi_clocks < 0x100) {
                writel(SKIP_DELAY_LOOP_VALUE_OR_ZERO(inner),
-                       &sdr_rw_load_mgr_regs->load_cntr1);
+                      &sdr_rw_load_mgr_regs->load_cntr1);
 
-               writel(RW_MGR_IDLE_LOOP1,
-                       &sdr_rw_load_jump_mgr_regs->load_jump_add1);
+               writel(seq->rwcfg->idle_loop1,
+                      &sdr_rw_load_jump_mgr_regs->load_jump_add1);
 
-               writel(RW_MGR_IDLE_LOOP1, SDR_PHYGRP_RWMGRGRP_ADDRESS |
+               writel(seq->rwcfg->idle_loop1, SDR_PHYGRP_RWMGRGRP_ADDRESS |
                                          RW_MGR_RUN_SINGLE_GROUP_OFFSET);
        } else {
                writel(SKIP_DELAY_LOOP_VALUE_OR_ZERO(inner),
-                       &sdr_rw_load_mgr_regs->load_cntr0);
+                      &sdr_rw_load_mgr_regs->load_cntr0);
 
                writel(SKIP_DELAY_LOOP_VALUE_OR_ZERO(outer),
-                       &sdr_rw_load_mgr_regs->load_cntr1);
+                      &sdr_rw_load_mgr_regs->load_cntr1);
 
-               writel(RW_MGR_IDLE_LOOP2,
-                       &sdr_rw_load_jump_mgr_regs->load_jump_add0);
+               writel(seq->rwcfg->idle_loop2,
+                      &sdr_rw_load_jump_mgr_regs->load_jump_add0);
 
-               writel(RW_MGR_IDLE_LOOP2,
-                       &sdr_rw_load_jump_mgr_regs->load_jump_add1);
+               writel(seq->rwcfg->idle_loop2,
+                      &sdr_rw_load_jump_mgr_regs->load_jump_add1);
 
-               /* hack to get around compiler not being smart enough */
-               if (afi_clocks <= 0x10000) {
-                       /* only need to run once */
-                       writel(RW_MGR_IDLE_LOOP2, SDR_PHYGRP_RWMGRGRP_ADDRESS |
-                                                 RW_MGR_RUN_SINGLE_GROUP_OFFSET);
-               } else {
-                       do {
-                               writel(RW_MGR_IDLE_LOOP2,
-                                       SDR_PHYGRP_RWMGRGRP_ADDRESS |
-                                       RW_MGR_RUN_SINGLE_GROUP_OFFSET);
-                       } while (c_loop-- != 0);
-               }
+               do {
+                       writel(seq->rwcfg->idle_loop2,
+                              SDR_PHYGRP_RWMGRGRP_ADDRESS |
+                              RW_MGR_RUN_SINGLE_GROUP_OFFSET);
+               } while (c_loop-- != 0);
        }
        debug("%s:%d clocks=%u ... end\n", __func__, __LINE__, clocks);
 }
@@ -858,9 +848,10 @@ static void delay_for_n_mem_clocks(const uint32_t clocks)
  *
  * Load instruction registers.
  */
-static void rw_mgr_mem_init_load_regs(u32 cntr0, u32 cntr1, u32 cntr2, u32 jump)
+static void rw_mgr_mem_init_load_regs(struct socfpga_sdrseq *seq,
+                                     u32 cntr0, u32 cntr1, u32 cntr2, u32 jump)
 {
-       uint32_t grpaddr = SDR_PHYGRP_RWMGRGRP_ADDRESS |
+       u32 grpaddr = SDR_PHYGRP_RWMGRGRP_ADDRESS |
                           RW_MGR_RUN_SINGLE_GROUP_OFFSET;
 
        /* Load counters */
@@ -888,63 +879,59 @@ static void rw_mgr_mem_init_load_regs(u32 cntr0, u32 cntr1, u32 cntr2, u32 jump)
  *
  * Load user calibration values and optionally precharge the banks.
  */
-static void rw_mgr_mem_load_user(const u32 fin1, const u32 fin2,
+static void rw_mgr_mem_load_user(struct socfpga_sdrseq *seq,
+                                const u32 fin1, const u32 fin2,
                                 const int precharge)
 {
        u32 grpaddr = SDR_PHYGRP_RWMGRGRP_ADDRESS |
                      RW_MGR_RUN_SINGLE_GROUP_OFFSET;
        u32 r;
 
-       for (r = 0; r < RW_MGR_MEM_NUMBER_OF_RANKS; r++) {
-               if (param->skip_ranks[r]) {
-                       /* request to skip the rank */
-                       continue;
-               }
-
+       for (r = 0; r < seq->rwcfg->mem_number_of_ranks; r++) {
                /* set rank */
-               set_rank_and_odt_mask(r, RW_MGR_ODT_MODE_OFF);
+               set_rank_and_odt_mask(seq, r, RW_MGR_ODT_MODE_OFF);
 
                /* precharge all banks ... */
                if (precharge)
-                       writel(RW_MGR_PRECHARGE_ALL, grpaddr);
+                       writel(seq->rwcfg->precharge_all, grpaddr);
 
                /*
                 * USER Use Mirror-ed commands for odd ranks if address
                 * mirrorring is on
                 */
-               if ((RW_MGR_MEM_ADDRESS_MIRRORING >> r) & 0x1) {
-                       set_jump_as_return();
-                       writel(RW_MGR_MRS2_MIRR, grpaddr);
-                       delay_for_n_mem_clocks(4);
-                       set_jump_as_return();
-                       writel(RW_MGR_MRS3_MIRR, grpaddr);
-                       delay_for_n_mem_clocks(4);
-                       set_jump_as_return();
-                       writel(RW_MGR_MRS1_MIRR, grpaddr);
-                       delay_for_n_mem_clocks(4);
-                       set_jump_as_return();
+               if ((seq->rwcfg->mem_address_mirroring >> r) & 0x1) {
+                       set_jump_as_return(seq);
+                       writel(seq->rwcfg->mrs2_mirr, grpaddr);
+                       delay_for_n_mem_clocks(seq, 4);
+                       set_jump_as_return(seq);
+                       writel(seq->rwcfg->mrs3_mirr, grpaddr);
+                       delay_for_n_mem_clocks(seq, 4);
+                       set_jump_as_return(seq);
+                       writel(seq->rwcfg->mrs1_mirr, grpaddr);
+                       delay_for_n_mem_clocks(seq, 4);
+                       set_jump_as_return(seq);
                        writel(fin1, grpaddr);
                } else {
-                       set_jump_as_return();
-                       writel(RW_MGR_MRS2, grpaddr);
-                       delay_for_n_mem_clocks(4);
-                       set_jump_as_return();
-                       writel(RW_MGR_MRS3, grpaddr);
-                       delay_for_n_mem_clocks(4);
-                       set_jump_as_return();
-                       writel(RW_MGR_MRS1, grpaddr);
-                       set_jump_as_return();
+                       set_jump_as_return(seq);
+                       writel(seq->rwcfg->mrs2, grpaddr);
+                       delay_for_n_mem_clocks(seq, 4);
+                       set_jump_as_return(seq);
+                       writel(seq->rwcfg->mrs3, grpaddr);
+                       delay_for_n_mem_clocks(seq, 4);
+                       set_jump_as_return(seq);
+                       writel(seq->rwcfg->mrs1, grpaddr);
+                       set_jump_as_return(seq);
                        writel(fin2, grpaddr);
                }
 
                if (precharge)
                        continue;
 
-               set_jump_as_return();
-               writel(RW_MGR_ZQCL, grpaddr);
+               set_jump_as_return(seq);
+               writel(seq->rwcfg->zqcl, grpaddr);
 
                /* tZQinit = tDLLK = 512 ck cycles */
-               delay_for_n_mem_clocks(512);
+               delay_for_n_mem_clocks(seq, 512);
        }
 }
 
@@ -953,7 +940,7 @@ static void rw_mgr_mem_load_user(const u32 fin1, const u32 fin2,
  *
  * Initialize RW Manager.
  */
-static void rw_mgr_mem_initialize(void)
+static void rw_mgr_mem_initialize(struct socfpga_sdrseq *seq)
 {
        debug("%s:%d\n", __func__, __LINE__);
 
@@ -984,9 +971,10 @@ static void rw_mgr_mem_initialize(void)
         * One possible solution is n = 0 , a = 256 , b = 106 => a = FF,
         * b = 6A
         */
-       rw_mgr_mem_init_load_regs(SEQ_TINIT_CNTR0_VAL, SEQ_TINIT_CNTR1_VAL,
-                                 SEQ_TINIT_CNTR2_VAL,
-                                 RW_MGR_INIT_RESET_0_CKE_0);
+       rw_mgr_mem_init_load_regs(seq, seq->misccfg->tinit_cntr0_val,
+                                 seq->misccfg->tinit_cntr1_val,
+                                 seq->misccfg->tinit_cntr2_val,
+                                 seq->rwcfg->init_reset_0_cke_0);
 
        /* Indicate that memory is stable. */
        writel(1, &phy_mgr_cfg->reset_mem_stbl);
@@ -1005,34 +993,37 @@ static void rw_mgr_mem_initialize(void)
         * One possible solution is n = 2 , a = 131 , b = 256 => a = 83,
         * b = FF
         */
-       rw_mgr_mem_init_load_regs(SEQ_TRESET_CNTR0_VAL, SEQ_TRESET_CNTR1_VAL,
-                                 SEQ_TRESET_CNTR2_VAL,
-                                 RW_MGR_INIT_RESET_1_CKE_0);
+       rw_mgr_mem_init_load_regs(seq, seq->misccfg->treset_cntr0_val,
+                                 seq->misccfg->treset_cntr1_val,
+                                 seq->misccfg->treset_cntr2_val,
+                                 seq->rwcfg->init_reset_1_cke_0);
 
        /* Bring up clock enable. */
 
        /* tXRP < 250 ck cycles */
-       delay_for_n_mem_clocks(250);
+       delay_for_n_mem_clocks(seq, 250);
 
-       rw_mgr_mem_load_user(RW_MGR_MRS0_DLL_RESET_MIRR, RW_MGR_MRS0_DLL_RESET,
-                            0);
+       rw_mgr_mem_load_user(seq, seq->rwcfg->mrs0_dll_reset_mirr,
+                            seq->rwcfg->mrs0_dll_reset, 0);
 }
 
-/*
- * At the end of calibration we have to program the user settings in, and
- * USER  hand off the memory to the user.
+/**
+ * rw_mgr_mem_handoff() - Hand off the memory to user
+ *
+ * At the end of calibration we have to program the user settings in
+ * and hand off the memory to the user.
  */
-static void rw_mgr_mem_handoff(void)
+static void rw_mgr_mem_handoff(struct socfpga_sdrseq *seq)
 {
-       rw_mgr_mem_load_user(RW_MGR_MRS0_USER_MIRR, RW_MGR_MRS0_USER, 1);
+       rw_mgr_mem_load_user(seq, seq->rwcfg->mrs0_user_mirr,
+                            seq->rwcfg->mrs0_user, 1);
        /*
-        * USER  need to wait tMOD (12CK or 15ns) time before issuing
-        * other commands, but we will have plenty of NIOS cycles before
-        * actual handoff so its okay.
+        * Need to wait tMOD (12CK or 15ns) time before issuing other
+        * commands, but we will have plenty of NIOS cycles before actual
+        * handoff so its okay.
         */
 }
 
-
 /**
  * rw_mgr_mem_calibrate_write_test_issue() - Issue write test command
  * @group:     Write Group
@@ -1041,12 +1032,12 @@ static void rw_mgr_mem_handoff(void)
  * Issue write test command. Two variants are provided, one that just tests
  * a write pattern and another that tests datamask functionality.
  */
-static void rw_mgr_mem_calibrate_write_test_issue(u32 group,
-                                                 u32 test_dm)
+static void rw_mgr_mem_calibrate_write_test_issue(struct socfpga_sdrseq *seq,
+                                                 u32 group, u32 test_dm)
 {
        const u32 quick_write_mode =
                (STATIC_CALIB_STEPS & CALIB_SKIP_WRITES) &&
-               ENABLE_SUPER_QUICK_CALIBRATION;
+               seq->misccfg->enable_super_quick_calibration;
        u32 mcc_instruction;
        u32 rw_wl_nop_cycles;
 
@@ -1076,7 +1067,7 @@ static void rw_mgr_mem_calibrate_write_test_issue(u32 group,
         *       one counter left to issue this command in "multiple-group" mode
         */
 
-       rw_wl_nop_cycles = gbl->rw_wl_nop_cycles;
+       rw_wl_nop_cycles = seq->gbl.rw_wl_nop_cycles;
 
        if (rw_wl_nop_cycles == -1) {
                /*
@@ -1089,17 +1080,17 @@ static void rw_mgr_mem_calibrate_write_test_issue(u32 group,
 
                /* CNTR 3 - Not used */
                if (test_dm) {
-                       mcc_instruction = RW_MGR_LFSR_WR_RD_DM_BANK_0_WL_1;
-                       writel(RW_MGR_LFSR_WR_RD_DM_BANK_0_DATA,
+                       mcc_instruction = seq->rwcfg->lfsr_wr_rd_dm_bank_0_wl_1;
+                       writel(seq->rwcfg->lfsr_wr_rd_dm_bank_0_data,
                               &sdr_rw_load_jump_mgr_regs->load_jump_add2);
-                       writel(RW_MGR_LFSR_WR_RD_DM_BANK_0_NOP,
+                       writel(seq->rwcfg->lfsr_wr_rd_dm_bank_0_nop,
                               &sdr_rw_load_jump_mgr_regs->load_jump_add3);
                } else {
-                       mcc_instruction = RW_MGR_LFSR_WR_RD_BANK_0_WL_1;
-                       writel(RW_MGR_LFSR_WR_RD_BANK_0_DATA,
-                               &sdr_rw_load_jump_mgr_regs->load_jump_add2);
-                       writel(RW_MGR_LFSR_WR_RD_BANK_0_NOP,
-                               &sdr_rw_load_jump_mgr_regs->load_jump_add3);
+                       mcc_instruction = seq->rwcfg->lfsr_wr_rd_bank_0_wl_1;
+                       writel(seq->rwcfg->lfsr_wr_rd_bank_0_data,
+                              &sdr_rw_load_jump_mgr_regs->load_jump_add2);
+                       writel(seq->rwcfg->lfsr_wr_rd_bank_0_nop,
+                              &sdr_rw_load_jump_mgr_regs->load_jump_add3);
                }
        } else if (rw_wl_nop_cycles == 0) {
                /*
@@ -1111,13 +1102,13 @@ static void rw_mgr_mem_calibrate_write_test_issue(u32 group,
 
                /* CNTR 3 - Not used */
                if (test_dm) {
-                       mcc_instruction = RW_MGR_LFSR_WR_RD_DM_BANK_0;
-                       writel(RW_MGR_LFSR_WR_RD_DM_BANK_0_DQS,
+                       mcc_instruction = seq->rwcfg->lfsr_wr_rd_dm_bank_0;
+                       writel(seq->rwcfg->lfsr_wr_rd_dm_bank_0_dqs,
                               &sdr_rw_load_jump_mgr_regs->load_jump_add2);
                } else {
-                       mcc_instruction = RW_MGR_LFSR_WR_RD_BANK_0;
-                       writel(RW_MGR_LFSR_WR_RD_BANK_0_DQS,
-                               &sdr_rw_load_jump_mgr_regs->load_jump_add2);
+                       mcc_instruction = seq->rwcfg->lfsr_wr_rd_bank_0;
+                       writel(seq->rwcfg->lfsr_wr_rd_bank_0_dqs,
+                              &sdr_rw_load_jump_mgr_regs->load_jump_add2);
                }
        } else {
                /*
@@ -1134,13 +1125,13 @@ static void rw_mgr_mem_calibrate_write_test_issue(u32 group,
                 */
                writel(rw_wl_nop_cycles - 1, &sdr_rw_load_mgr_regs->load_cntr3);
                if (test_dm) {
-                       mcc_instruction = RW_MGR_LFSR_WR_RD_DM_BANK_0;
-                       writel(RW_MGR_LFSR_WR_RD_DM_BANK_0_NOP,
-                               &sdr_rw_load_jump_mgr_regs->load_jump_add3);
+                       mcc_instruction = seq->rwcfg->lfsr_wr_rd_dm_bank_0;
+                       writel(seq->rwcfg->lfsr_wr_rd_dm_bank_0_nop,
+                              &sdr_rw_load_jump_mgr_regs->load_jump_add3);
                } else {
-                       mcc_instruction = RW_MGR_LFSR_WR_RD_BANK_0;
-                       writel(RW_MGR_LFSR_WR_RD_BANK_0_NOP,
-                               &sdr_rw_load_jump_mgr_regs->load_jump_add3);
+                       mcc_instruction = seq->rwcfg->lfsr_wr_rd_bank_0;
+                       writel(seq->rwcfg->lfsr_wr_rd_bank_0_nop,
+                              &sdr_rw_load_jump_mgr_regs->load_jump_add3);
                }
        }
 
@@ -1161,11 +1152,11 @@ static void rw_mgr_mem_calibrate_write_test_issue(u32 group,
        writel(0x30, &sdr_rw_load_mgr_regs->load_cntr1);
 
        if (test_dm) {
-               writel(RW_MGR_LFSR_WR_RD_DM_BANK_0_WAIT,
-                       &sdr_rw_load_jump_mgr_regs->load_jump_add1);
+               writel(seq->rwcfg->lfsr_wr_rd_dm_bank_0_wait,
+                      &sdr_rw_load_jump_mgr_regs->load_jump_add1);
        } else {
-               writel(RW_MGR_LFSR_WR_RD_BANK_0_WAIT,
-                       &sdr_rw_load_jump_mgr_regs->load_jump_add1);
+               writel(seq->rwcfg->lfsr_wr_rd_bank_0_wait,
+                      &sdr_rw_load_jump_mgr_regs->load_jump_add1);
        }
 
        writel(mcc_instruction, (SDR_PHYGRP_RWMGRGRP_ADDRESS |
@@ -1174,7 +1165,8 @@ static void rw_mgr_mem_calibrate_write_test_issue(u32 group,
 }
 
 /**
- * rw_mgr_mem_calibrate_write_test() - Test writes, check for single/multiple pass
+ * rw_mgr_mem_calibrate_write_test() - Test writes, check for single/multiple
+ * pass
  * @rank_bgn:          Rank number
  * @write_group:       Write Group
  * @use_dm:            Use DM
@@ -1185,40 +1177,38 @@ static void rw_mgr_mem_calibrate_write_test_issue(u32 group,
  * Test writes, can check for a single bit pass or multiple bit pass.
  */
 static int
-rw_mgr_mem_calibrate_write_test(const u32 rank_bgn, const u32 write_group,
+rw_mgr_mem_calibrate_write_test(struct socfpga_sdrseq *seq,
+                               const u32 rank_bgn, const u32 write_group,
                                const u32 use_dm, const u32 all_correct,
                                u32 *bit_chk, const u32 all_ranks)
 {
        const u32 rank_end = all_ranks ?
-                               RW_MGR_MEM_NUMBER_OF_RANKS :
+                               seq->rwcfg->mem_number_of_ranks :
                                (rank_bgn + NUM_RANKS_PER_SHADOW_REG);
-       const u32 shift_ratio = RW_MGR_MEM_DQ_PER_WRITE_DQS /
-                               RW_MGR_MEM_VIRTUAL_GROUPS_PER_WRITE_DQS;
-       const u32 correct_mask_vg = param->write_correct_mask_vg;
+       const u32 shift_ratio = seq->rwcfg->mem_dq_per_write_dqs /
+                               seq->rwcfg->mem_virtual_groups_per_write_dqs;
+       const u32 correct_mask_vg = seq->param.write_correct_mask_vg;
 
-       u32 tmp_bit_chk, base_rw_mgr;
+       u32 tmp_bit_chk, base_rw_mgr, group;
        int vg, r;
 
-       *bit_chk = param->write_correct_mask;
+       *bit_chk = seq->param.write_correct_mask;
 
        for (r = rank_bgn; r < rank_end; r++) {
-               /* Request to skip the rank */
-               if (param->skip_ranks[r])
-                       continue;
-
                /* Set rank */
-               set_rank_and_odt_mask(r, RW_MGR_ODT_MODE_READ_WRITE);
+               set_rank_and_odt_mask(seq, r, RW_MGR_ODT_MODE_READ_WRITE);
 
                tmp_bit_chk = 0;
-               for (vg = RW_MGR_MEM_VIRTUAL_GROUPS_PER_WRITE_DQS - 1;
+               for (vg = seq->rwcfg->mem_virtual_groups_per_write_dqs - 1;
                     vg >= 0; vg--) {
                        /* Reset the FIFOs to get pointers to known state. */
                        writel(0, &phy_mgr_cmd->fifo_reset);
 
-                       rw_mgr_mem_calibrate_write_test_issue(
-                               write_group *
-                               RW_MGR_MEM_VIRTUAL_GROUPS_PER_WRITE_DQS + vg,
-                               use_dm);
+                       group = write_group *
+                               seq->rwcfg->mem_virtual_groups_per_write_dqs
+                               + vg;
+                       rw_mgr_mem_calibrate_write_test_issue(seq, group,
+                                                             use_dm);
 
                        base_rw_mgr = readl(SDR_PHYGRP_RWMGRGRP_ADDRESS);
                        tmp_bit_chk <<= shift_ratio;
@@ -1228,17 +1218,16 @@ rw_mgr_mem_calibrate_write_test(const u32 rank_bgn, const u32 write_group,
                *bit_chk &= tmp_bit_chk;
        }
 
-       set_rank_and_odt_mask(0, RW_MGR_ODT_MODE_OFF);
+       set_rank_and_odt_mask(seq, 0, RW_MGR_ODT_MODE_OFF);
        if (all_correct) {
-               debug_cond(DLEVEL == 2,
+               debug_cond(DLEVEL >= 2,
                           "write_test(%u,%u,ALL) : %u == %u => %i\n",
                           write_group, use_dm, *bit_chk,
-                          param->write_correct_mask,
-                          *bit_chk == param->write_correct_mask);
-               return *bit_chk == param->write_correct_mask;
+                          seq->param.write_correct_mask,
+                          *bit_chk == seq->param.write_correct_mask);
+               return *bit_chk == seq->param.write_correct_mask;
        } else {
-               set_rank_and_odt_mask(0, RW_MGR_ODT_MODE_OFF);
-               debug_cond(DLEVEL == 2,
+               debug_cond(DLEVEL >= 2,
                           "write_test(%u,%u,ONE) : %u != %i => %i\n",
                           write_group, use_dm, *bit_chk, 0, *bit_chk != 0);
                return *bit_chk != 0x00;
@@ -1255,51 +1244,49 @@ rw_mgr_mem_calibrate_write_test(const u32 rank_bgn, const u32 write_group,
  * read test to ensure memory works.
  */
 static int
-rw_mgr_mem_calibrate_read_test_patterns(const u32 rank_bgn, const u32 group,
+rw_mgr_mem_calibrate_read_test_patterns(struct socfpga_sdrseq *seq,
+                                       const u32 rank_bgn, const u32 group,
                                        const u32 all_ranks)
 {
        const u32 addr = SDR_PHYGRP_RWMGRGRP_ADDRESS |
                         RW_MGR_RUN_SINGLE_GROUP_OFFSET;
        const u32 addr_offset =
-                        (group * RW_MGR_MEM_VIRTUAL_GROUPS_PER_READ_DQS) << 2;
+                        (group * seq->rwcfg->mem_virtual_groups_per_read_dqs)
+                        << 2;
        const u32 rank_end = all_ranks ?
-                               RW_MGR_MEM_NUMBER_OF_RANKS :
+                               seq->rwcfg->mem_number_of_ranks :
                                (rank_bgn + NUM_RANKS_PER_SHADOW_REG);
-       const u32 shift_ratio = RW_MGR_MEM_DQ_PER_READ_DQS /
-                               RW_MGR_MEM_VIRTUAL_GROUPS_PER_READ_DQS;
-       const u32 correct_mask_vg = param->read_correct_mask_vg;
+       const u32 shift_ratio = seq->rwcfg->mem_dq_per_read_dqs /
+                               seq->rwcfg->mem_virtual_groups_per_read_dqs;
+       const u32 correct_mask_vg = seq->param.read_correct_mask_vg;
 
        u32 tmp_bit_chk, base_rw_mgr, bit_chk;
        int vg, r;
        int ret = 0;
 
-       bit_chk = param->read_correct_mask;
+       bit_chk = seq->param.read_correct_mask;
 
        for (r = rank_bgn; r < rank_end; r++) {
-               /* Request to skip the rank */
-               if (param->skip_ranks[r])
-                       continue;
-
                /* Set rank */
-               set_rank_and_odt_mask(r, RW_MGR_ODT_MODE_READ_WRITE);
+               set_rank_and_odt_mask(seq, r, RW_MGR_ODT_MODE_READ_WRITE);
 
                /* Load up a constant bursts of read commands */
                writel(0x20, &sdr_rw_load_mgr_regs->load_cntr0);
-               writel(RW_MGR_GUARANTEED_READ,
-                       &sdr_rw_load_jump_mgr_regs->load_jump_add0);
+               writel(seq->rwcfg->guaranteed_read,
+                      &sdr_rw_load_jump_mgr_regs->load_jump_add0);
 
                writel(0x20, &sdr_rw_load_mgr_regs->load_cntr1);
-               writel(RW_MGR_GUARANTEED_READ_CONT,
-                       &sdr_rw_load_jump_mgr_regs->load_jump_add1);
+               writel(seq->rwcfg->guaranteed_read_cont,
+                      &sdr_rw_load_jump_mgr_regs->load_jump_add1);
 
                tmp_bit_chk = 0;
-               for (vg = RW_MGR_MEM_VIRTUAL_GROUPS_PER_READ_DQS - 1;
+               for (vg = seq->rwcfg->mem_virtual_groups_per_read_dqs - 1;
                     vg >= 0; vg--) {
                        /* Reset the FIFOs to get pointers to known state. */
                        writel(0, &phy_mgr_cmd->fifo_reset);
                        writel(0, SDR_PHYGRP_RWMGRGRP_ADDRESS |
                                  RW_MGR_RESET_READ_DATAPATH_OFFSET);
-                       writel(RW_MGR_GUARANTEED_READ,
+                       writel(seq->rwcfg->guaranteed_read,
                               addr + addr_offset + (vg << 2));
 
                        base_rw_mgr = readl(SDR_PHYGRP_RWMGRGRP_ADDRESS);
@@ -1310,72 +1297,71 @@ rw_mgr_mem_calibrate_read_test_patterns(const u32 rank_bgn, const u32 group,
                bit_chk &= tmp_bit_chk;
        }
 
-       writel(RW_MGR_CLEAR_DQS_ENABLE, addr + (group << 2));
+       writel(seq->rwcfg->clear_dqs_enable, addr + (group << 2));
 
-       set_rank_and_odt_mask(0, RW_MGR_ODT_MODE_OFF);
+       set_rank_and_odt_mask(seq, 0, RW_MGR_ODT_MODE_OFF);
 
-       if (bit_chk != param->read_correct_mask)
+       if (bit_chk != seq->param.read_correct_mask)
                ret = -EIO;
 
-       debug_cond(DLEVEL == 1,
+       debug_cond(DLEVEL >= 1,
                   "%s:%d test_load_patterns(%u,ALL) => (%u == %u) => %i\n",
                   __func__, __LINE__, group, bit_chk,
-                  param->read_correct_mask, ret);
+                  seq->param.read_correct_mask, ret);
 
        return ret;
 }
 
 /**
- * rw_mgr_mem_calibrate_read_load_patterns() - Load up the patterns for read test
+ * rw_mgr_mem_calibrate_read_load_patterns() - Load up the patterns for read
+ * test
  * @rank_bgn:  Rank number
  * @all_ranks: Test all ranks
  *
  * Load up the patterns we are going to use during a read test.
  */
-static void rw_mgr_mem_calibrate_read_load_patterns(const u32 rank_bgn,
+static void rw_mgr_mem_calibrate_read_load_patterns(struct socfpga_sdrseq *seq,
+                                                   const u32 rank_bgn,
                                                    const int all_ranks)
 {
        const u32 rank_end = all_ranks ?
-                       RW_MGR_MEM_NUMBER_OF_RANKS :
+                       seq->rwcfg->mem_number_of_ranks :
                        (rank_bgn + NUM_RANKS_PER_SHADOW_REG);
        u32 r;
 
        debug("%s:%d\n", __func__, __LINE__);
 
        for (r = rank_bgn; r < rank_end; r++) {
-               if (param->skip_ranks[r])
-                       /* request to skip the rank */
-                       continue;
-
                /* set rank */
-               set_rank_and_odt_mask(r, RW_MGR_ODT_MODE_READ_WRITE);
+               set_rank_and_odt_mask(seq, r, RW_MGR_ODT_MODE_READ_WRITE);
 
                /* Load up a constant bursts */
                writel(0x20, &sdr_rw_load_mgr_regs->load_cntr0);
 
-               writel(RW_MGR_GUARANTEED_WRITE_WAIT0,
-                       &sdr_rw_load_jump_mgr_regs->load_jump_add0);
+               writel(seq->rwcfg->guaranteed_write_wait0,
+                      &sdr_rw_load_jump_mgr_regs->load_jump_add0);
 
                writel(0x20, &sdr_rw_load_mgr_regs->load_cntr1);
 
-               writel(RW_MGR_GUARANTEED_WRITE_WAIT1,
-                       &sdr_rw_load_jump_mgr_regs->load_jump_add1);
+               writel(seq->rwcfg->guaranteed_write_wait1,
+                      &sdr_rw_load_jump_mgr_regs->load_jump_add1);
 
                writel(0x04, &sdr_rw_load_mgr_regs->load_cntr2);
 
-               writel(RW_MGR_GUARANTEED_WRITE_WAIT2,
-                       &sdr_rw_load_jump_mgr_regs->load_jump_add2);
+               writel(seq->rwcfg->guaranteed_write_wait2,
+                      &sdr_rw_load_jump_mgr_regs->load_jump_add2);
 
                writel(0x04, &sdr_rw_load_mgr_regs->load_cntr3);
 
-               writel(RW_MGR_GUARANTEED_WRITE_WAIT3,
-                       &sdr_rw_load_jump_mgr_regs->load_jump_add3);
+               writel(seq->rwcfg->guaranteed_write_wait3,
+                      &sdr_rw_load_jump_mgr_regs->load_jump_add3);
 
-               writel(RW_MGR_GUARANTEED_WRITE, SDR_PHYGRP_RWMGRGRP_ADDRESS |
-                                               RW_MGR_RUN_SINGLE_GROUP_OFFSET);
+               writel(seq->rwcfg->guaranteed_write,
+                      SDR_PHYGRP_RWMGRGRP_ADDRESS |
+                      RW_MGR_RUN_SINGLE_GROUP_OFFSET);
        }
 
-       set_rank_and_odt_mask(0, RW_MGR_ODT_MODE_OFF);
+       set_rank_and_odt_mask(seq, 0, RW_MGR_ODT_MODE_OFF);
 }
 
 /**
@@ -1393,41 +1379,38 @@ static void rw_mgr_mem_calibrate_read_load_patterns(const u32 rank_bgn,
  * checks than the regular read test.
  */
 static int
-rw_mgr_mem_calibrate_read_test(const u32 rank_bgn, const u32 group,
+rw_mgr_mem_calibrate_read_test(struct socfpga_sdrseq *seq,
+                              const u32 rank_bgn, const u32 group,
                               const u32 num_tries, const u32 all_correct,
                               u32 *bit_chk,
                               const u32 all_groups, const u32 all_ranks)
 {
-       const u32 rank_end = all_ranks ? RW_MGR_MEM_NUMBER_OF_RANKS :
+       const u32 rank_end = all_ranks ? seq->rwcfg->mem_number_of_ranks :
                (rank_bgn + NUM_RANKS_PER_SHADOW_REG);
        const u32 quick_read_mode =
                ((STATIC_CALIB_STEPS & CALIB_SKIP_DELAY_SWEEPS) &&
-                ENABLE_SUPER_QUICK_CALIBRATION);
-       u32 correct_mask_vg = param->read_correct_mask_vg;
+                seq->misccfg->enable_super_quick_calibration);
+       u32 correct_mask_vg = seq->param.read_correct_mask_vg;
        u32 tmp_bit_chk;
        u32 base_rw_mgr;
        u32 addr;
 
        int r, vg, ret;
 
-       *bit_chk = param->read_correct_mask;
+       *bit_chk = seq->param.read_correct_mask;
 
        for (r = rank_bgn; r < rank_end; r++) {
-               if (param->skip_ranks[r])
-                       /* request to skip the rank */
-                       continue;
-
                /* set rank */
-               set_rank_and_odt_mask(r, RW_MGR_ODT_MODE_READ_WRITE);
+               set_rank_and_odt_mask(seq, r, RW_MGR_ODT_MODE_READ_WRITE);
 
                writel(0x10, &sdr_rw_load_mgr_regs->load_cntr1);
 
-               writel(RW_MGR_READ_B2B_WAIT1,
-                       &sdr_rw_load_jump_mgr_regs->load_jump_add1);
+               writel(seq->rwcfg->read_b2b_wait1,
+                      &sdr_rw_load_jump_mgr_regs->load_jump_add1);
 
                writel(0x10, &sdr_rw_load_mgr_regs->load_cntr2);
-               writel(RW_MGR_READ_B2B_WAIT2,
-                       &sdr_rw_load_jump_mgr_regs->load_jump_add2);
+               writel(seq->rwcfg->read_b2b_wait2,
+                      &sdr_rw_load_jump_mgr_regs->load_jump_add2);
 
                if (quick_read_mode)
                        writel(0x1, &sdr_rw_load_mgr_regs->load_cntr0);
@@ -1437,21 +1420,21 @@ rw_mgr_mem_calibrate_read_test(const u32 rank_bgn, const u32 group,
                else
                        writel(0x32, &sdr_rw_load_mgr_regs->load_cntr0);
 
-               writel(RW_MGR_READ_B2B,
-                       &sdr_rw_load_jump_mgr_regs->load_jump_add0);
+               writel(seq->rwcfg->read_b2b,
+                      &sdr_rw_load_jump_mgr_regs->load_jump_add0);
                if (all_groups)
-                       writel(RW_MGR_MEM_IF_READ_DQS_WIDTH *
-                              RW_MGR_MEM_VIRTUAL_GROUPS_PER_READ_DQS - 1,
+                       writel(seq->rwcfg->mem_if_read_dqs_width *
+                              seq->rwcfg->mem_virtual_groups_per_read_dqs - 1,
                               &sdr_rw_load_mgr_regs->load_cntr3);
                else
                        writel(0x0, &sdr_rw_load_mgr_regs->load_cntr3);
 
-               writel(RW_MGR_READ_B2B,
-                       &sdr_rw_load_jump_mgr_regs->load_jump_add3);
+               writel(seq->rwcfg->read_b2b,
+                      &sdr_rw_load_jump_mgr_regs->load_jump_add3);
 
                tmp_bit_chk = 0;
-               for (vg = RW_MGR_MEM_VIRTUAL_GROUPS_PER_READ_DQS - 1; vg >= 0;
-                    vg--) {
+               for (vg = seq->rwcfg->mem_virtual_groups_per_read_dqs - 1;
+                    vg >= 0; vg--) {
                        /* Reset the FIFOs to get pointers to known state. */
                        writel(0, &phy_mgr_cmd->fifo_reset);
                        writel(0, SDR_PHYGRP_RWMGRGRP_ADDRESS |
@@ -1465,13 +1448,15 @@ rw_mgr_mem_calibrate_read_test(const u32 rank_bgn, const u32 group,
                                       RW_MGR_RUN_SINGLE_GROUP_OFFSET;
                        }
 
-                       writel(RW_MGR_READ_B2B, addr +
-                              ((group * RW_MGR_MEM_VIRTUAL_GROUPS_PER_READ_DQS +
-                              vg) << 2));
+                       writel(seq->rwcfg->read_b2b, addr +
+                              ((group *
+                                seq->rwcfg->mem_virtual_groups_per_read_dqs +
+                                vg) << 2));
 
                        base_rw_mgr = readl(SDR_PHYGRP_RWMGRGRP_ADDRESS);
-                       tmp_bit_chk <<= RW_MGR_MEM_DQ_PER_READ_DQS /
-                                       RW_MGR_MEM_VIRTUAL_GROUPS_PER_READ_DQS;
+                       tmp_bit_chk <<=
+                               seq->rwcfg->mem_dq_per_read_dqs /
+                               seq->rwcfg->mem_virtual_groups_per_read_dqs;
                        tmp_bit_chk |= correct_mask_vg & ~(base_rw_mgr);
                }
 
@@ -1479,19 +1464,19 @@ rw_mgr_mem_calibrate_read_test(const u32 rank_bgn, const u32 group,
        }
 
        addr = SDR_PHYGRP_RWMGRGRP_ADDRESS | RW_MGR_RUN_SINGLE_GROUP_OFFSET;
-       writel(RW_MGR_CLEAR_DQS_ENABLE, addr + (group << 2));
+       writel(seq->rwcfg->clear_dqs_enable, addr + (group << 2));
 
-       set_rank_and_odt_mask(0, RW_MGR_ODT_MODE_OFF);
+       set_rank_and_odt_mask(seq, 0, RW_MGR_ODT_MODE_OFF);
 
        if (all_correct) {
-               ret = (*bit_chk == param->read_correct_mask);
-               debug_cond(DLEVEL == 2,
+               ret = (*bit_chk == seq->param.read_correct_mask);
+               debug_cond(DLEVEL >= 2,
                           "%s:%d read_test(%u,ALL,%u) => (%u == %u) => %i\n",
                           __func__, __LINE__, group, all_groups, *bit_chk,
-                          param->read_correct_mask, ret);
+                          seq->param.read_correct_mask, ret);
        } else  {
                ret = (*bit_chk != 0x00);
-               debug_cond(DLEVEL == 2,
+               debug_cond(DLEVEL >= 2,
                           "%s:%d read_test(%u,ONE,%u) => (%u != %u) => %i\n",
                           __func__, __LINE__, group, all_groups, *bit_chk,
                           0, ret);
@@ -1510,13 +1495,15 @@ rw_mgr_mem_calibrate_read_test(const u32 rank_bgn, const u32 group,
  * Perform a READ test across all memory ranks.
  */
 static int
-rw_mgr_mem_calibrate_read_test_all_ranks(const u32 grp, const u32 num_tries,
+rw_mgr_mem_calibrate_read_test_all_ranks(struct socfpga_sdrseq *seq,
+                                        const u32 grp, const u32 num_tries,
                                         const u32 all_correct,
                                         const u32 all_groups)
 {
        u32 bit_chk;
-       return rw_mgr_mem_calibrate_read_test(0, grp, num_tries, all_correct,
-                                             &bit_chk, all_groups, 1);
+       return rw_mgr_mem_calibrate_read_test(seq, 0, grp, num_tries,
+                                             all_correct, &bit_chk, all_groups,
+                                             1);
 }
 
 /**
@@ -1536,11 +1523,11 @@ static void rw_mgr_incr_vfifo(const u32 grp)
  *
  * Decrease VFIFO value.
  */
-static void rw_mgr_decr_vfifo(const u32 grp)
+static void rw_mgr_decr_vfifo(struct socfpga_sdrseq *seq, const u32 grp)
 {
        u32 i;
 
-       for (i = 0; i < VFIFO_SIZE - 1; i++)
+       for (i = 0; i < seq->misccfg->read_valid_fifo_size - 1; i++)
                rw_mgr_incr_vfifo(grp);
 }
 
@@ -1550,15 +1537,16 @@ static void rw_mgr_decr_vfifo(const u32 grp)
  *
  * Push VFIFO until a failing read happens.
  */
-static int find_vfifo_failing_read(const u32 grp)
+static int find_vfifo_failing_read(struct socfpga_sdrseq *seq,
+                                  const u32 grp)
 {
        u32 v, ret, fail_cnt = 0;
 
-       for (v = 0; v < VFIFO_SIZE; v++) {
-               debug_cond(DLEVEL == 2, "%s:%d: vfifo %u\n",
+       for (v = 0; v < seq->misccfg->read_valid_fifo_size; v++) {
+               debug_cond(DLEVEL >= 2, "%s:%d: vfifo %u\n",
                           __func__, __LINE__, v);
-               ret = rw_mgr_mem_calibrate_read_test_all_ranks(grp, 1,
-                                               PASS_ONE_BIT, 0);
+               ret = rw_mgr_mem_calibrate_read_test_all_ranks(seq, grp, 1,
+                                                              PASS_ONE_BIT, 0);
                if (!ret) {
                        fail_cnt++;
 
@@ -1571,7 +1559,7 @@ static int find_vfifo_failing_read(const u32 grp)
        }
 
        /* No failing read found! Something must have gone wrong. */
-       debug_cond(DLEVEL == 2, "%s:%d: vfifo failed\n", __func__, __LINE__);
+       debug_cond(DLEVEL >= 2, "%s:%d: vfifo failed\n", __func__, __LINE__);
        return 0;
 }
 
@@ -1586,20 +1574,22 @@ static int find_vfifo_failing_read(const u32 grp)
  *
  * Find working or non-working DQS enable phase setting.
  */
-static int sdr_find_phase_delay(int working, int delay, const u32 grp,
-                               u32 *work, const u32 work_inc, u32 *pd)
+static int sdr_find_phase_delay(struct socfpga_sdrseq *seq, int working,
+                               int delay, const u32 grp, u32 *work,
+                               const u32 work_inc, u32 *pd)
 {
-       const u32 max = delay ? IO_DQS_EN_DELAY_MAX : IO_DQS_EN_PHASE_MAX;
+       const u32 max = delay ? seq->iocfg->dqs_en_delay_max :
+                               seq->iocfg->dqs_en_phase_max;
        u32 ret;
 
        for (; *pd <= max; (*pd)++) {
                if (delay)
-                       scc_mgr_set_dqs_en_delay_all_ranks(grp, *pd);
+                       scc_mgr_set_dqs_en_delay_all_ranks(seq, grp, *pd);
                else
-                       scc_mgr_set_dqs_en_phase_all_ranks(grp, *pd);
+                       scc_mgr_set_dqs_en_phase_all_ranks(seq, grp, *pd);
 
-               ret = rw_mgr_mem_calibrate_read_test_all_ranks(grp, 1,
-                                       PASS_ONE_BIT, 0);
+               ret = rw_mgr_mem_calibrate_read_test_all_ranks(seq, grp, 1,
+                                                              PASS_ONE_BIT, 0);
                if (!working)
                        ret = !ret;
 
@@ -1622,22 +1612,22 @@ static int sdr_find_phase_delay(int working, int delay, const u32 grp,
  *
  * Find working or non-working DQS enable phase setting.
  */
-static int sdr_find_phase(int working, const u32 grp, u32 *work,
-                         u32 *i, u32 *p)
+static int sdr_find_phase(struct socfpga_sdrseq *seq, int working,
+                         const u32 grp, u32 *work, u32 *i, u32 *p)
 {
-       const u32 end = VFIFO_SIZE + (working ? 0 : 1);
+       const u32 end = seq->misccfg->read_valid_fifo_size + (working ? 0 : 1);
        int ret;
 
        for (; *i < end; (*i)++) {
                if (working)
                        *p = 0;
 
-               ret = sdr_find_phase_delay(working, 0, grp, work,
-                                          IO_DELAY_PER_OPA_TAP, p);
+               ret = sdr_find_phase_delay(seq, working, 0, grp, work,
+                                          seq->iocfg->delay_per_opa_tap, p);
                if (!ret)
                        return 0;
 
-               if (*p > IO_DQS_EN_PHASE_MAX) {
+               if (*p > seq->iocfg->dqs_en_phase_max) {
                        /* Fiddle with FIFO. */
                        rw_mgr_incr_vfifo(grp);
                        if (!working)
@@ -1658,26 +1648,26 @@ static int sdr_find_phase(int working, const u32 grp, u32 *work,
  *
  * Find working DQS enable phase setting.
  */
-static int sdr_working_phase(const u32 grp, u32 *work_bgn, u32 *d,
-                            u32 *p, u32 *i)
+static int sdr_working_phase(struct socfpga_sdrseq *seq, const u32 grp,
+                            u32 *work_bgn, u32 *d, u32 *p, u32 *i)
 {
-       const u32 dtaps_per_ptap = IO_DELAY_PER_OPA_TAP /
-                                  IO_DELAY_PER_DQS_EN_DCHAIN_TAP;
+       const u32 dtaps_per_ptap = seq->iocfg->delay_per_opa_tap /
+                                  seq->iocfg->delay_per_dqs_en_dchain_tap;
        int ret;
 
        *work_bgn = 0;
 
        for (*d = 0; *d <= dtaps_per_ptap; (*d)++) {
                *i = 0;
-               scc_mgr_set_dqs_en_delay_all_ranks(grp, *d);
-               ret = sdr_find_phase(1, grp, work_bgn, i, p);
+               scc_mgr_set_dqs_en_delay_all_ranks(seq, grp, *d);
+               ret = sdr_find_phase(seq, 1, grp, work_bgn, i, p);
                if (!ret)
                        return 0;
-               *work_bgn += IO_DELAY_PER_DQS_EN_DCHAIN_TAP;
+               *work_bgn += seq->iocfg->delay_per_dqs_en_dchain_tap;
        }
 
        /* Cannot find working solution */
-       debug_cond(DLEVEL == 2, "%s:%d find_dqs_en_phase: no vfifo/ptap/dtap\n",
+       debug_cond(DLEVEL >= 2, "%s:%d find_dqs_en_phase: no vfifo/ptap/dtap\n",
                   __func__, __LINE__);
        return -EINVAL;
 }
@@ -1690,42 +1680,44 @@ static int sdr_working_phase(const u32 grp, u32 *work_bgn, u32 *d,
  *
  * Find DQS enable backup phase setting.
  */
-static void sdr_backup_phase(const u32 grp, u32 *work_bgn, u32 *p)
+static void sdr_backup_phase(struct socfpga_sdrseq *seq, const u32 grp,
+                            u32 *work_bgn, u32 *p)
 {
        u32 tmp_delay, d;
        int ret;
 
        /* Special case code for backing up a phase */
        if (*p == 0) {
-               *p = IO_DQS_EN_PHASE_MAX;
-               rw_mgr_decr_vfifo(grp);
+               *p = seq->iocfg->dqs_en_phase_max;
+               rw_mgr_decr_vfifo(seq, grp);
        } else {
                (*p)--;
        }
-       tmp_delay = *work_bgn - IO_DELAY_PER_OPA_TAP;
-       scc_mgr_set_dqs_en_phase_all_ranks(grp, *p);
+       tmp_delay = *work_bgn - seq->iocfg->delay_per_opa_tap;
+       scc_mgr_set_dqs_en_phase_all_ranks(seq, grp, *p);
 
-       for (d = 0; d <= IO_DQS_EN_DELAY_MAX && tmp_delay < *work_bgn; d++) {
-               scc_mgr_set_dqs_en_delay_all_ranks(grp, d);
+       for (d = 0; d <= seq->iocfg->dqs_en_delay_max && tmp_delay < *work_bgn;
+            d++) {
+               scc_mgr_set_dqs_en_delay_all_ranks(seq, grp, d);
 
-               ret = rw_mgr_mem_calibrate_read_test_all_ranks(grp, 1,
-                                       PASS_ONE_BIT, 0);
+               ret = rw_mgr_mem_calibrate_read_test_all_ranks(seq, grp, 1,
+                                                              PASS_ONE_BIT, 0);
                if (ret) {
                        *work_bgn = tmp_delay;
                        break;
                }
 
-               tmp_delay += IO_DELAY_PER_DQS_EN_DCHAIN_TAP;
+               tmp_delay += seq->iocfg->delay_per_dqs_en_dchain_tap;
        }
 
        /* Restore VFIFO to old state before we decremented it (if needed). */
        (*p)++;
-       if (*p > IO_DQS_EN_PHASE_MAX) {
+       if (*p > seq->iocfg->dqs_en_phase_max) {
                *p = 0;
                rw_mgr_incr_vfifo(grp);
        }
 
-       scc_mgr_set_dqs_en_delay_all_ranks(grp, 0);
+       scc_mgr_set_dqs_en_delay_all_ranks(seq, grp, 0);
 }
 
 /**
@@ -1737,22 +1729,23 @@ static void sdr_backup_phase(const u32 grp, u32 *work_bgn, u32 *p)
  *
  * Find non-working DQS enable phase setting.
  */
-static int sdr_nonworking_phase(const u32 grp, u32 *work_end, u32 *p, u32 *i)
+static int sdr_nonworking_phase(struct socfpga_sdrseq *seq,
+                               const u32 grp, u32 *work_end, u32 *p, u32 *i)
 {
        int ret;
 
        (*p)++;
-       *work_end += IO_DELAY_PER_OPA_TAP;
-       if (*p > IO_DQS_EN_PHASE_MAX) {
+       *work_end += seq->iocfg->delay_per_opa_tap;
+       if (*p > seq->iocfg->dqs_en_phase_max) {
                /* Fiddle with FIFO. */
                *p = 0;
                rw_mgr_incr_vfifo(grp);
        }
 
-       ret = sdr_find_phase(0, grp, work_end, i, p);
+       ret = sdr_find_phase(seq, 0, grp, work_end, i, p);
        if (ret) {
                /* Cannot see edge of failing read. */
-               debug_cond(DLEVEL == 2, "%s:%d: end: failed\n",
+               debug_cond(DLEVEL >= 2, "%s:%d: end: failed\n",
                           __func__, __LINE__);
        }
 
@@ -1767,7 +1760,8 @@ static int sdr_nonworking_phase(const u32 grp, u32 *work_end, u32 *p, u32 *i)
  *
  * Find center of the working DQS enable window.
  */
-static int sdr_find_window_center(const u32 grp, const u32 work_bgn,
+static int sdr_find_window_center(struct socfpga_sdrseq *seq,
+                                 const u32 grp, const u32 work_bgn,
                                  const u32 work_end)
 {
        u32 work_mid;
@@ -1776,42 +1770,47 @@ static int sdr_find_window_center(const u32 grp, const u32 work_bgn,
 
        work_mid = (work_bgn + work_end) / 2;
 
-       debug_cond(DLEVEL == 2, "work_bgn=%d work_end=%d work_mid=%d\n",
+       debug_cond(DLEVEL >= 2, "work_bgn=%d work_end=%d work_mid=%d\n",
                   work_bgn, work_end, work_mid);
        /* Get the middle delay to be less than a VFIFO delay */
-       tmp_delay = (IO_DQS_EN_PHASE_MAX + 1) * IO_DELAY_PER_OPA_TAP;
+       tmp_delay = (seq->iocfg->dqs_en_phase_max + 1)
+               * seq->iocfg->delay_per_opa_tap;
 
-       debug_cond(DLEVEL == 2, "vfifo ptap delay %d\n", tmp_delay);
+       debug_cond(DLEVEL >= 2, "vfifo ptap delay %d\n", tmp_delay);
        work_mid %= tmp_delay;
-       debug_cond(DLEVEL == 2, "new work_mid %d\n", work_mid);
+       debug_cond(DLEVEL >= 2, "new work_mid %d\n", work_mid);
 
-       tmp_delay = rounddown(work_mid, IO_DELAY_PER_OPA_TAP);
-       if (tmp_delay > IO_DQS_EN_PHASE_MAX * IO_DELAY_PER_OPA_TAP)
-               tmp_delay = IO_DQS_EN_PHASE_MAX * IO_DELAY_PER_OPA_TAP;
-       p = tmp_delay / IO_DELAY_PER_OPA_TAP;
+       tmp_delay = rounddown(work_mid, seq->iocfg->delay_per_opa_tap);
+       if (tmp_delay > seq->iocfg->dqs_en_phase_max
+               * seq->iocfg->delay_per_opa_tap) {
+               tmp_delay = seq->iocfg->dqs_en_phase_max
+                       * seq->iocfg->delay_per_opa_tap;
+       }
+       p = tmp_delay / seq->iocfg->delay_per_opa_tap;
 
-       debug_cond(DLEVEL == 2, "new p %d, tmp_delay=%d\n", p, tmp_delay);
+       debug_cond(DLEVEL >= 2, "new p %d, tmp_delay=%d\n", p, tmp_delay);
 
-       d = DIV_ROUND_UP(work_mid - tmp_delay, IO_DELAY_PER_DQS_EN_DCHAIN_TAP);
-       if (d > IO_DQS_EN_DELAY_MAX)
-               d = IO_DQS_EN_DELAY_MAX;
-       tmp_delay += d * IO_DELAY_PER_DQS_EN_DCHAIN_TAP;
+       d = DIV_ROUND_UP(work_mid - tmp_delay,
+                        seq->iocfg->delay_per_dqs_en_dchain_tap);
+       if (d > seq->iocfg->dqs_en_delay_max)
+               d = seq->iocfg->dqs_en_delay_max;
+       tmp_delay += d * seq->iocfg->delay_per_dqs_en_dchain_tap;
 
-       debug_cond(DLEVEL == 2, "new d %d, tmp_delay=%d\n", d, tmp_delay);
+       debug_cond(DLEVEL >= 2, "new d %d, tmp_delay=%d\n", d, tmp_delay);
 
-       scc_mgr_set_dqs_en_phase_all_ranks(grp, p);
-       scc_mgr_set_dqs_en_delay_all_ranks(grp, d);
+       scc_mgr_set_dqs_en_phase_all_ranks(seq, grp, p);
+       scc_mgr_set_dqs_en_delay_all_ranks(seq, grp, d);
 
        /*
         * push vfifo until we can successfully calibrate. We can do this
         * because the largest possible margin in 1 VFIFO cycle.
         */
-       for (i = 0; i < VFIFO_SIZE; i++) {
-               debug_cond(DLEVEL == 2, "find_dqs_en_phase: center\n");
-               if (rw_mgr_mem_calibrate_read_test_all_ranks(grp, 1,
+       for (i = 0; i < seq->misccfg->read_valid_fifo_size; i++) {
+               debug_cond(DLEVEL >= 2, "find_dqs_en_phase: center\n");
+               if (rw_mgr_mem_calibrate_read_test_all_ranks(seq, grp, 1,
                                                             PASS_ONE_BIT,
                                                             0)) {
-                       debug_cond(DLEVEL == 2,
+                       debug_cond(DLEVEL >= 2,
                                   "%s:%d center: found: ptap=%u dtap=%u\n",
                                   __func__, __LINE__, p, d);
                        return 0;
@@ -1821,41 +1820,45 @@ static int sdr_find_window_center(const u32 grp, const u32 work_bgn,
                rw_mgr_incr_vfifo(grp);
        }
 
-       debug_cond(DLEVEL == 2, "%s:%d center: failed.\n",
+       debug_cond(DLEVEL >= 2, "%s:%d center: failed.\n",
                   __func__, __LINE__);
        return -EINVAL;
 }
 
 /**
- * rw_mgr_mem_calibrate_vfifo_find_dqs_en_phase() - Find a good DQS enable to use
+ * rw_mgr_mem_calibrate_vfifo_find_dqs_en_phase() - Find a good DQS enable to
+ * use
  * @grp:       Read/Write Group
  *
  * Find a good DQS enable to use.
  */
-static int rw_mgr_mem_calibrate_vfifo_find_dqs_en_phase(const u32 grp)
+static int
+rw_mgr_mem_calibrate_vfifo_find_dqs_en_phase(struct socfpga_sdrseq *seq,
+                                            const u32 grp)
 {
        u32 d, p, i;
        u32 dtaps_per_ptap;
        u32 work_bgn, work_end;
-       u32 found_passing_read, found_failing_read, initial_failing_dtap;
+       u32 found_passing_read, found_failing_read = 0, initial_failing_dtap;
        int ret;
 
        debug("%s:%d %u\n", __func__, __LINE__, grp);
 
        reg_file_set_sub_stage(CAL_SUBSTAGE_VFIFO_CENTER);
 
-       scc_mgr_set_dqs_en_delay_all_ranks(grp, 0);
-       scc_mgr_set_dqs_en_phase_all_ranks(grp, 0);
+       scc_mgr_set_dqs_en_delay_all_ranks(seq, grp, 0);
+       scc_mgr_set_dqs_en_phase_all_ranks(seq, grp, 0);
 
        /* Step 0: Determine number of delay taps for each phase tap. */
-       dtaps_per_ptap = IO_DELAY_PER_OPA_TAP / IO_DELAY_PER_DQS_EN_DCHAIN_TAP;
+       dtaps_per_ptap = seq->iocfg->delay_per_opa_tap /
+                        seq->iocfg->delay_per_dqs_en_dchain_tap;
 
        /* Step 1: First push vfifo until we get a failing read. */
-       find_vfifo_failing_read(grp);
+       find_vfifo_failing_read(seq, grp);
 
        /* Step 2: Find first working phase, increment in ptaps. */
        work_bgn = 0;
-       ret = sdr_working_phase(grp, &work_bgn, &d, &p, &i);
+       ret = sdr_working_phase(seq, grp, &work_bgn, &d, &p, &i);
        if (ret)
                return ret;
 
@@ -1871,13 +1874,13 @@ static int rw_mgr_mem_calibrate_vfifo_find_dqs_en_phase(const u32 grp)
                 * Step 3a: If we have room, back off by one and
                 *          increment in dtaps.
                 */
-               sdr_backup_phase(grp, &work_bgn, &p);
+               sdr_backup_phase(seq, grp, &work_bgn, &p);
 
                /*
                 * Step 4a: go forward from working phase to non working
                 * phase, increment in ptaps.
                 */
-               ret = sdr_nonworking_phase(grp, &work_end, &p, &i);
+               ret = sdr_nonworking_phase(seq, grp, &work_end, &p, &i);
                if (ret)
                        return ret;
 
@@ -1885,41 +1888,41 @@ static int rw_mgr_mem_calibrate_vfifo_find_dqs_en_phase(const u32 grp)
 
                /* Special case code for backing up a phase */
                if (p == 0) {
-                       p = IO_DQS_EN_PHASE_MAX;
-                       rw_mgr_decr_vfifo(grp);
+                       p = seq->iocfg->dqs_en_phase_max;
+                       rw_mgr_decr_vfifo(seq, grp);
                } else {
                        p = p - 1;
                }
 
-               work_end -= IO_DELAY_PER_OPA_TAP;
-               scc_mgr_set_dqs_en_phase_all_ranks(grp, p);
+               work_end -= seq->iocfg->delay_per_opa_tap;
+               scc_mgr_set_dqs_en_phase_all_ranks(seq, grp, p);
 
                d = 0;
 
-               debug_cond(DLEVEL == 2, "%s:%d p: ptap=%u\n",
+               debug_cond(DLEVEL >= 2, "%s:%d p: ptap=%u\n",
                           __func__, __LINE__, p);
        }
 
        /* The dtap increment to find the failing edge is done here. */
-       sdr_find_phase_delay(0, 1, grp, &work_end,
-                            IO_DELAY_PER_DQS_EN_DCHAIN_TAP, &d);
+       sdr_find_phase_delay(seq, 0, 1, grp, &work_end,
+                            seq->iocfg->delay_per_dqs_en_dchain_tap, &d);
 
        /* Go back to working dtap */
        if (d != 0)
-               work_end -= IO_DELAY_PER_DQS_EN_DCHAIN_TAP;
+               work_end -= seq->iocfg->delay_per_dqs_en_dchain_tap;
 
-       debug_cond(DLEVEL == 2,
+       debug_cond(DLEVEL >= 2,
                   "%s:%d p/d: ptap=%u dtap=%u end=%u\n",
                   __func__, __LINE__, p, d - 1, work_end);
 
        if (work_end < work_bgn) {
                /* nil range */
-               debug_cond(DLEVEL == 2, "%s:%d end-2: failed\n",
+               debug_cond(DLEVEL >= 2, "%s:%d end-2: failed\n",
                           __func__, __LINE__);
                return -EINVAL;
        }
 
-       debug_cond(DLEVEL == 2, "%s:%d found range [%u,%u]\n",
+       debug_cond(DLEVEL >= 2, "%s:%d found range [%u,%u]\n",
                   __func__, __LINE__, work_bgn, work_end);
 
        /*
@@ -1927,22 +1930,22 @@ static int rw_mgr_mem_calibrate_vfifo_find_dqs_en_phase(const u32 grp)
         * To do that we'll back up a ptap and re-find the edge of the
         * window using dtaps
         */
-       debug_cond(DLEVEL == 2, "%s:%d calculate dtaps_per_ptap for tracking\n",
+       debug_cond(DLEVEL >= 2, "%s:%d calculate dtaps_per_ptap for tracking\n",
                   __func__, __LINE__);
 
        /* Special case code for backing up a phase */
        if (p == 0) {
-               p = IO_DQS_EN_PHASE_MAX;
-               rw_mgr_decr_vfifo(grp);
-               debug_cond(DLEVEL == 2, "%s:%d backedup cycle/phase: p=%u\n",
+               p = seq->iocfg->dqs_en_phase_max;
+               rw_mgr_decr_vfifo(seq, grp);
+               debug_cond(DLEVEL >= 2, "%s:%d backedup cycle/phase: p=%u\n",
                           __func__, __LINE__, p);
        } else {
                p = p - 1;
-               debug_cond(DLEVEL == 2, "%s:%d backedup phase only: p=%u",
+               debug_cond(DLEVEL >= 2, "%s:%d backedup phase only: p=%u",
                           __func__, __LINE__, p);
        }
 
-       scc_mgr_set_dqs_en_phase_all_ranks(grp, p);
+       scc_mgr_set_dqs_en_phase_all_ranks(seq, grp, p);
 
        /*
         * Increase dtap until we first see a passing read (in case the
@@ -1951,21 +1954,21 @@ static int rw_mgr_mem_calibrate_vfifo_find_dqs_en_phase(const u32 grp)
         */
 
        /* Find a passing read. */
-       debug_cond(DLEVEL == 2, "%s:%d find passing read\n",
+       debug_cond(DLEVEL >= 2, "%s:%d find passing read\n",
                   __func__, __LINE__);
 
        initial_failing_dtap = d;
 
-       found_passing_read = !sdr_find_phase_delay(1, 1, grp, NULL, 0, &d);
+       found_passing_read = !sdr_find_phase_delay(seq, 1, 1, grp, NULL, 0, &d);
        if (found_passing_read) {
                /* Find a failing read. */
-               debug_cond(DLEVEL == 2, "%s:%d find failing read\n",
+               debug_cond(DLEVEL >= 2, "%s:%d find failing read\n",
                           __func__, __LINE__);
                d++;
-               found_failing_read = !sdr_find_phase_delay(0, 1, grp, NULL, 0,
-                                                          &d);
+               found_failing_read = !sdr_find_phase_delay(seq, 0, 1, grp, NULL,
+                                                          0, &d);
        } else {
-               debug_cond(DLEVEL == 1,
+               debug_cond(DLEVEL >= 1,
                           "%s:%d failed to calculate dtaps per ptap. Fall back on static value\n",
                           __func__, __LINE__);
        }
@@ -1973,18 +1976,18 @@ static int rw_mgr_mem_calibrate_vfifo_find_dqs_en_phase(const u32 grp)
        /*
         * The dynamically calculated dtaps_per_ptap is only valid if we
         * found a passing/failing read. If we didn't, it means d hit the max
-        * (IO_DQS_EN_DELAY_MAX). Otherwise, dtaps_per_ptap retains its
+        * (seq->iocfg->dqs_en_delay_max). Otherwise, dtaps_per_ptap retains its
         * statically calculated value.
         */
        if (found_passing_read && found_failing_read)
                dtaps_per_ptap = d - initial_failing_dtap;
 
        writel(dtaps_per_ptap, &sdr_reg_file->dtaps_per_ptap);
-       debug_cond(DLEVEL == 2, "%s:%d dtaps_per_ptap=%u - %u = %u",
+       debug_cond(DLEVEL >= 2, "%s:%d dtaps_per_ptap=%u - %u = %u",
                   __func__, __LINE__, d, initial_failing_dtap, dtaps_per_ptap);
 
        /* Step 6: Find the centre of the window. */
-       ret = sdr_find_window_center(grp, work_bgn, work_end);
+       ret = sdr_find_window_center(seq, grp, work_bgn, work_end);
 
        return ret;
 }
@@ -2002,33 +2005,35 @@ static int rw_mgr_mem_calibrate_vfifo_find_dqs_en_phase(const u32 grp)
  *
  * Test if the found edge is valid.
  */
-static u32 search_stop_check(const int write, const int d, const int rank_bgn,
+static u32 search_stop_check(struct socfpga_sdrseq *seq, const int write,
+                            const int d, const int rank_bgn,
                             const u32 write_group, const u32 read_group,
                             u32 *bit_chk, u32 *sticky_bit_chk,
                             const u32 use_read_test)
 {
-       const u32 ratio = RW_MGR_MEM_IF_READ_DQS_WIDTH /
-                         RW_MGR_MEM_IF_WRITE_DQS_WIDTH;
-       const u32 correct_mask = write ? param->write_correct_mask :
-                                        param->read_correct_mask;
-       const u32 per_dqs = write ? RW_MGR_MEM_DQ_PER_WRITE_DQS :
-                                   RW_MGR_MEM_DQ_PER_READ_DQS;
+       const u32 ratio = seq->rwcfg->mem_if_read_dqs_width /
+                         seq->rwcfg->mem_if_write_dqs_width;
+       const u32 correct_mask = write ? seq->param.write_correct_mask :
+                                        seq->param.read_correct_mask;
+       const u32 per_dqs = write ? seq->rwcfg->mem_dq_per_write_dqs :
+                                   seq->rwcfg->mem_dq_per_read_dqs;
        u32 ret;
        /*
         * Stop searching when the read test doesn't pass AND when
         * we've seen a passing read on every bit.
         */
        if (write) {                    /* WRITE-ONLY */
-               ret = !rw_mgr_mem_calibrate_write_test(rank_bgn, write_group,
-                                                        0, PASS_ONE_BIT,
-                                                        bit_chk, 0);
+               ret = !rw_mgr_mem_calibrate_write_test(seq, rank_bgn,
+                                                        write_group, 0,
+                                                        PASS_ONE_BIT, bit_chk,
+                                                        0);
        } else if (use_read_test) {     /* READ-ONLY */
-               ret = !rw_mgr_mem_calibrate_read_test(rank_bgn, read_group,
+               ret = !rw_mgr_mem_calibrate_read_test(seq, rank_bgn, read_group,
                                                        NUM_READ_PB_TESTS,
                                                        PASS_ONE_BIT, bit_chk,
                                                        0, 0);
        } else {                        /* READ-ONLY */
-               rw_mgr_mem_calibrate_write_test(rank_bgn, write_group, 0,
+               rw_mgr_mem_calibrate_write_test(seq, rank_bgn, write_group, 0,
                                                PASS_ONE_BIT, bit_chk, 0);
                *bit_chk = *bit_chk >> (per_dqs *
                        (read_group - (write_group * ratio)));
@@ -2036,7 +2041,7 @@ static u32 search_stop_check(const int write, const int d, const int rank_bgn,
        }
        *sticky_bit_chk = *sticky_bit_chk | *bit_chk;
        ret = ret && (*sticky_bit_chk == correct_mask);
-       debug_cond(DLEVEL == 2,
+       debug_cond(DLEVEL >= 2,
                   "%s:%d center(left): dtap=%u => %u == %u && %u",
                   __func__, __LINE__, d,
                   *sticky_bit_chk, correct_mask, ret);
@@ -2057,27 +2062,30 @@ static u32 search_stop_check(const int write, const int d, const int rank_bgn,
  *
  * Find left edge of DQ/DQS working phase.
  */
-static void search_left_edge(const int write, const int rank_bgn,
-       const u32 write_group, const u32 read_group, const u32 test_bgn,
-       u32 *sticky_bit_chk,
-       int *left_edge, int *right_edge, const u32 use_read_test)
-{
-       const u32 delay_max = write ? IO_IO_OUT1_DELAY_MAX : IO_IO_IN_DELAY_MAX;
-       const u32 dqs_max = write ? IO_IO_OUT1_DELAY_MAX : IO_DQS_IN_DELAY_MAX;
-       const u32 per_dqs = write ? RW_MGR_MEM_DQ_PER_WRITE_DQS :
-                                   RW_MGR_MEM_DQ_PER_READ_DQS;
+static void search_left_edge(struct socfpga_sdrseq *seq, const int write,
+                            const int rank_bgn, const u32 write_group,
+                            const u32 read_group, const u32 test_bgn,
+                            u32 *sticky_bit_chk, int *left_edge,
+                            int *right_edge, const u32 use_read_test)
+{
+       const u32 delay_max = write ? seq->iocfg->io_out1_delay_max :
+                                     seq->iocfg->io_in_delay_max;
+       const u32 dqs_max = write ? seq->iocfg->io_out1_delay_max :
+                                   seq->iocfg->dqs_in_delay_max;
+       const u32 per_dqs = write ? seq->rwcfg->mem_dq_per_write_dqs :
+                                   seq->rwcfg->mem_dq_per_read_dqs;
        u32 stop, bit_chk;
        int i, d;
 
        for (d = 0; d <= dqs_max; d++) {
                if (write)
-                       scc_mgr_apply_group_dq_out1_delay(d);
+                       scc_mgr_apply_group_dq_out1_delay(seq, d);
                else
-                       scc_mgr_apply_group_dq_in_delay(test_bgn, d);
+                       scc_mgr_apply_group_dq_in_delay(seq, test_bgn, d);
 
                writel(0, &sdr_scc_mgr->update);
 
-               stop = search_stop_check(write, d, rank_bgn, write_group,
+               stop = search_stop_check(seq, write, d, rank_bgn, write_group,
                                         read_group, &bit_chk, sticky_bit_chk,
                                         use_read_test);
                if (stop == 1)
@@ -2107,13 +2115,13 @@ static void search_left_edge(const int write, const int rank_bgn,
 
        /* Reset DQ delay chains to 0 */
        if (write)
-               scc_mgr_apply_group_dq_out1_delay(0);
+               scc_mgr_apply_group_dq_out1_delay(seq, 0);
        else
-               scc_mgr_apply_group_dq_in_delay(test_bgn, 0);
+               scc_mgr_apply_group_dq_in_delay(seq, test_bgn, 0);
 
        *sticky_bit_chk = 0;
        for (i = per_dqs - 1; i >= 0; i--) {
-               debug_cond(DLEVEL == 2,
+               debug_cond(DLEVEL >= 2,
                           "%s:%d vfifo_center: left_edge[%u]: %d right_edge[%u]: %d\n",
                           __func__, __LINE__, i, left_edge[i],
                           i, right_edge[i]);
@@ -2126,7 +2134,7 @@ static void search_left_edge(const int write, const int rank_bgn,
                if ((left_edge[i] == delay_max + 1) &&
                    (right_edge[i] != delay_max + 1)) {
                        right_edge[i] = delay_max + 1;
-                       debug_cond(DLEVEL == 2,
+                       debug_cond(DLEVEL >= 2,
                                   "%s:%d vfifo_center: reset right_edge[%u]: %d\n",
                                   __func__, __LINE__, i, right_edge[i]);
                }
@@ -2148,8 +2156,6 @@ static void search_left_edge(const int write, const int rank_bgn,
                                *sticky_bit_chk |= 1;
                }
        }
-
-
 }
 
 /**
@@ -2167,29 +2173,33 @@ static void search_left_edge(const int write, const int rank_bgn,
  *
  * Find right edge of DQ/DQS working phase.
  */
-static int search_right_edge(const int write, const int rank_bgn,
-       const u32 write_group, const u32 read_group,
-       const int start_dqs, const int start_dqs_en,
-       u32 *sticky_bit_chk,
-       int *left_edge, int *right_edge, const u32 use_read_test)
+static int search_right_edge(struct socfpga_sdrseq *seq, const int write,
+                            const int rank_bgn, const u32 write_group,
+                            const u32 read_group, const int start_dqs,
+                            const int start_dqs_en, u32 *sticky_bit_chk,
+                            int *left_edge, int *right_edge,
+                            const u32 use_read_test)
 {
-       const u32 delay_max = write ? IO_IO_OUT1_DELAY_MAX : IO_IO_IN_DELAY_MAX;
-       const u32 dqs_max = write ? IO_IO_OUT1_DELAY_MAX : IO_DQS_IN_DELAY_MAX;
-       const u32 per_dqs = write ? RW_MGR_MEM_DQ_PER_WRITE_DQS :
-                                   RW_MGR_MEM_DQ_PER_READ_DQS;
+       const u32 delay_max = write ? seq->iocfg->io_out1_delay_max :
+                                     seq->iocfg->io_in_delay_max;
+       const u32 dqs_max = write ? seq->iocfg->io_out1_delay_max :
+                                   seq->iocfg->dqs_in_delay_max;
+       const u32 per_dqs = write ? seq->rwcfg->mem_dq_per_write_dqs :
+                                   seq->rwcfg->mem_dq_per_read_dqs;
        u32 stop, bit_chk;
        int i, d;
 
        for (d = 0; d <= dqs_max - start_dqs; d++) {
                if (write) {    /* WRITE-ONLY */
-                       scc_mgr_apply_group_dqs_io_and_oct_out1(write_group,
+                       scc_mgr_apply_group_dqs_io_and_oct_out1(seq,
+                                                               write_group,
                                                                d + start_dqs);
                } else {        /* READ-ONLY */
                        scc_mgr_set_dqs_bus_in_delay(read_group, d + start_dqs);
-                       if (IO_SHIFT_DQS_EN_WHEN_SHIFT_DQS) {
-                               uint32_t delay = d + start_dqs_en;
-                               if (delay > IO_DQS_EN_DELAY_MAX)
-                                       delay = IO_DQS_EN_DELAY_MAX;
+                       if (seq->iocfg->shift_dqs_en_when_shift_dqs) {
+                               u32 delay = d + start_dqs_en;
+                               if (delay > seq->iocfg->dqs_en_delay_max)
+                                       delay = seq->iocfg->dqs_en_delay_max;
                                scc_mgr_set_dqs_en_delay(read_group, delay);
                        }
                        scc_mgr_load_dqs(read_group);
@@ -2197,12 +2207,14 @@ static int search_right_edge(const int write, const int rank_bgn,
 
                writel(0, &sdr_scc_mgr->update);
 
-               stop = search_stop_check(write, d, rank_bgn, write_group,
+               stop = search_stop_check(seq, write, d, rank_bgn, write_group,
                                         read_group, &bit_chk, sticky_bit_chk,
                                         use_read_test);
                if (stop == 1) {
                        if (write && (d == 0)) {        /* WRITE-ONLY */
-                               for (i = 0; i < RW_MGR_MEM_DQ_PER_WRITE_DQS; i++) {
+                               for (i = 0;
+                                    i < seq->rwcfg->mem_dq_per_write_dqs;
+                                    i++) {
                                        /*
                                         * d = 0 failed, but it passed when
                                         * testing the left edge, so it must be
@@ -2255,12 +2267,12 @@ static int search_right_edge(const int write, const int rank_bgn,
                                }
                        }
 
-                       debug_cond(DLEVEL == 2, "%s:%d center[r,d=%u]: ",
+                       debug_cond(DLEVEL >= 2, "%s:%d center[r,d=%u]: ",
                                   __func__, __LINE__, d);
-                       debug_cond(DLEVEL == 2,
+                       debug_cond(DLEVEL >= 2,
                                   "bit_chk_test=%i left_edge[%u]: %d ",
                                   bit_chk & 1, i, left_edge[i]);
-                       debug_cond(DLEVEL == 2, "right_edge[%u]: %d\n", i,
+                       debug_cond(DLEVEL >= 2, "right_edge[%u]: %d\n", i,
                                   right_edge[i]);
                        bit_chk >>= 1;
                }
@@ -2268,7 +2280,7 @@ static int search_right_edge(const int write, const int rank_bgn,
 
        /* Check that all bits have a window */
        for (i = 0; i < per_dqs; i++) {
-               debug_cond(DLEVEL == 2,
+               debug_cond(DLEVEL >= 2,
                           "%s:%d write_center: left_edge[%u]: %d right_edge[%u]: %d",
                           __func__, __LINE__, i, left_edge[i],
                           i, right_edge[i]);
@@ -2289,11 +2301,12 @@ static int search_right_edge(const int write, const int rank_bgn,
  *
  * Find index and value of the middle of the DQ/DQS working phase.
  */
-static int get_window_mid_index(const int write, int *left_edge,
+static int get_window_mid_index(struct socfpga_sdrseq *seq,
+                               const int write, int *left_edge,
                                int *right_edge, int *mid_min)
 {
-       const u32 per_dqs = write ? RW_MGR_MEM_DQ_PER_WRITE_DQS :
-                                   RW_MGR_MEM_DQ_PER_READ_DQS;
+       const u32 per_dqs = write ? seq->rwcfg->mem_dq_per_write_dqs :
+                                   seq->rwcfg->mem_dq_per_read_dqs;
        int i, mid, min_index;
 
        /* Find middle of window for each DQ bit */
@@ -2317,7 +2330,7 @@ static int get_window_mid_index(const int write, int *left_edge,
                (*mid_min)++;
        *mid_min = *mid_min / 2;
 
-       debug_cond(DLEVEL == 1, "%s:%d vfifo_center: *mid_min=%d (index=%u)\n",
+       debug_cond(DLEVEL >= 1, "%s:%d vfifo_center: *mid_min=%d (index=%u)\n",
                   __func__, __LINE__, *mid_min, min_index);
        return min_index;
 }
@@ -2336,19 +2349,21 @@ static int get_window_mid_index(const int write, int *left_edge,
  *
  * Align the DQ/DQS windows in each group.
  */
-static void center_dq_windows(const int write, int *left_edge, int *right_edge,
+static void center_dq_windows(struct socfpga_sdrseq *seq,
+                             const int write, int *left_edge, int *right_edge,
                              const int mid_min, const int orig_mid_min,
                              const int min_index, const int test_bgn,
                              int *dq_margin, int *dqs_margin)
 {
-       const u32 delay_max = write ? IO_IO_OUT1_DELAY_MAX : IO_IO_IN_DELAY_MAX;
-       const u32 per_dqs = write ? RW_MGR_MEM_DQ_PER_WRITE_DQS :
-                                   RW_MGR_MEM_DQ_PER_READ_DQS;
-       const u32 delay_off = write ? SCC_MGR_IO_OUT1_DELAY_OFFSET :
+       const s32 delay_max = write ? seq->iocfg->io_out1_delay_max :
+                                     seq->iocfg->io_in_delay_max;
+       const s32 per_dqs = write ? seq->rwcfg->mem_dq_per_write_dqs :
+                                   seq->rwcfg->mem_dq_per_read_dqs;
+       const s32 delay_off = write ? SCC_MGR_IO_OUT1_DELAY_OFFSET :
                                      SCC_MGR_IO_IN_DELAY_OFFSET;
-       const u32 addr = SDR_PHYGRP_SCCGRP_ADDRESS | delay_off;
+       const s32 addr = SDR_PHYGRP_SCCGRP_ADDRESS | delay_off;
 
-       u32 temp_dq_io_delay1, temp_dq_io_delay2;
+       s32 temp_dq_io_delay1;
        int shift_dq, i, p;
 
        /* Initialize data for export structures */
@@ -2362,30 +2377,31 @@ static void center_dq_windows(const int write, int *left_edge, int *right_edge,
                        (left_edge[min_index] - right_edge[min_index]))/2  +
                        (orig_mid_min - mid_min);
 
-               debug_cond(DLEVEL == 2,
+               debug_cond(DLEVEL >= 2,
                           "vfifo_center: before: shift_dq[%u]=%d\n",
                           i, shift_dq);
 
-               temp_dq_io_delay1 = readl(addr + (p << 2));
-               temp_dq_io_delay2 = readl(addr + (i << 2));
+               temp_dq_io_delay1 = readl(addr + (i << 2));
 
                if (shift_dq + temp_dq_io_delay1 > delay_max)
-                       shift_dq = delay_max - temp_dq_io_delay2;
+                       shift_dq = delay_max - temp_dq_io_delay1;
                else if (shift_dq + temp_dq_io_delay1 < 0)
                        shift_dq = -temp_dq_io_delay1;
 
-               debug_cond(DLEVEL == 2,
+               debug_cond(DLEVEL >= 2,
                           "vfifo_center: after: shift_dq[%u]=%d\n",
                           i, shift_dq);
 
                if (write)
-                       scc_mgr_set_dq_out1_delay(i, temp_dq_io_delay1 + shift_dq);
+                       scc_mgr_set_dq_out1_delay(i,
+                                                 temp_dq_io_delay1 + shift_dq);
                else
-                       scc_mgr_set_dq_in_delay(p, temp_dq_io_delay1 + shift_dq);
+                       scc_mgr_set_dq_in_delay(p,
+                                               temp_dq_io_delay1 + shift_dq);
 
                scc_mgr_load_dq(p);
 
-               debug_cond(DLEVEL == 2,
+               debug_cond(DLEVEL >= 2,
                           "vfifo_center: margin[%u]=[%d,%d]\n", i,
                           left_edge[i] - shift_dq + (-mid_min),
                           right_edge[i] + shift_dq - (-mid_min));
@@ -2397,7 +2413,6 @@ static void center_dq_windows(const int write, int *left_edge, int *right_edge,
                if (right_edge[i] + shift_dq - (-mid_min) < *dqs_margin)
                        *dqs_margin = right_edge[i] + shift_dq - (-mid_min);
        }
-
 }
 
 /**
@@ -2410,9 +2425,12 @@ static void center_dq_windows(const int write, int *left_edge, int *right_edge,
  *
  * Per-bit deskew DQ and centering.
  */
-static int rw_mgr_mem_calibrate_vfifo_center(const u32 rank_bgn,
-                       const u32 rw_group, const u32 test_bgn,
-                       const int use_read_test, const int update_fom)
+static int rw_mgr_mem_calibrate_vfifo_center(struct socfpga_sdrseq *seq,
+                                            const u32 rank_bgn,
+                                            const u32 rw_group,
+                                            const u32 test_bgn,
+                                            const int use_read_test,
+                                            const int update_fom)
 {
        const u32 addr =
                SDR_PHYGRP_SCCGRP_ADDRESS + SCC_MGR_DQS_IN_DELAY_OFFSET +
@@ -2421,37 +2439,37 @@ static int rw_mgr_mem_calibrate_vfifo_center(const u32 rank_bgn,
         * Store these as signed since there are comparisons with
         * signed numbers.
         */
-       uint32_t sticky_bit_chk;
-       int32_t left_edge[RW_MGR_MEM_DQ_PER_READ_DQS];
-       int32_t right_edge[RW_MGR_MEM_DQ_PER_READ_DQS];
-       int32_t orig_mid_min, mid_min;
-       int32_t new_dqs, start_dqs, start_dqs_en, final_dqs_en;
-       int32_t dq_margin, dqs_margin;
+       u32 sticky_bit_chk;
+       s32 left_edge[seq->rwcfg->mem_dq_per_read_dqs];
+       s32 right_edge[seq->rwcfg->mem_dq_per_read_dqs];
+       s32 orig_mid_min, mid_min;
+       s32 new_dqs, start_dqs, start_dqs_en = 0, final_dqs_en;
+       s32 dq_margin, dqs_margin;
        int i, min_index;
        int ret;
 
        debug("%s:%d: %u %u", __func__, __LINE__, rw_group, test_bgn);
 
        start_dqs = readl(addr);
-       if (IO_SHIFT_DQS_EN_WHEN_SHIFT_DQS)
-               start_dqs_en = readl(addr - IO_DQS_EN_DELAY_OFFSET);
+       if (seq->iocfg->shift_dqs_en_when_shift_dqs)
+               start_dqs_en = readl(addr - seq->iocfg->dqs_en_delay_offset);
 
        /* set the left and right edge of each bit to an illegal value */
-       /* use (IO_IO_IN_DELAY_MAX + 1) as an illegal value */
+       /* use (seq->iocfg->io_in_delay_max + 1) as an illegal value */
        sticky_bit_chk = 0;
-       for (i = 0; i < RW_MGR_MEM_DQ_PER_READ_DQS; i++) {
-               left_edge[i]  = IO_IO_IN_DELAY_MAX + 1;
-               right_edge[i] = IO_IO_IN_DELAY_MAX + 1;
+       for (i = 0; i < seq->rwcfg->mem_dq_per_read_dqs; i++) {
+               left_edge[i]  = seq->iocfg->io_in_delay_max + 1;
+               right_edge[i] = seq->iocfg->io_in_delay_max + 1;
        }
 
        /* Search for the left edge of the window for each bit */
-       search_left_edge(0, rank_bgn, rw_group, rw_group, test_bgn,
+       search_left_edge(seq, 0, rank_bgn, rw_group, rw_group, test_bgn,
                         &sticky_bit_chk,
                         left_edge, right_edge, use_read_test);
 
 
        /* Search for the right edge of the window for each bit */
-       ret = search_right_edge(0, rank_bgn, rw_group, rw_group,
+       ret = search_right_edge(seq, 0, rank_bgn, rw_group, rw_group,
                                start_dqs, start_dqs_en,
                                &sticky_bit_chk,
                                left_edge, right_edge, use_read_test);
@@ -2462,63 +2480,65 @@ static int rw_mgr_mem_calibrate_vfifo_center(const u32 rank_bgn,
                 * dqs/ck relationships.
                 */
                scc_mgr_set_dqs_bus_in_delay(rw_group, start_dqs);
-               if (IO_SHIFT_DQS_EN_WHEN_SHIFT_DQS)
+               if (seq->iocfg->shift_dqs_en_when_shift_dqs)
                        scc_mgr_set_dqs_en_delay(rw_group, start_dqs_en);
 
                scc_mgr_load_dqs(rw_group);
                writel(0, &sdr_scc_mgr->update);
 
-               debug_cond(DLEVEL == 1,
+               debug_cond(DLEVEL >= 1,
                           "%s:%d vfifo_center: failed to find edge [%u]: %d %d",
                           __func__, __LINE__, i, left_edge[i], right_edge[i]);
                if (use_read_test) {
-                       set_failing_group_stage(rw_group *
-                               RW_MGR_MEM_DQ_PER_READ_DQS + i,
+                       set_failing_group_stage(seq, rw_group *
+                               seq->rwcfg->mem_dq_per_read_dqs + i,
                                CAL_STAGE_VFIFO,
                                CAL_SUBSTAGE_VFIFO_CENTER);
                } else {
-                       set_failing_group_stage(rw_group *
-                               RW_MGR_MEM_DQ_PER_READ_DQS + i,
+                       set_failing_group_stage(seq, rw_group *
+                               seq->rwcfg->mem_dq_per_read_dqs + i,
                                CAL_STAGE_VFIFO_AFTER_WRITES,
                                CAL_SUBSTAGE_VFIFO_CENTER);
                }
                return -EIO;
        }
 
-       min_index = get_window_mid_index(0, left_edge, right_edge, &mid_min);
+       min_index = get_window_mid_index(seq, 0, left_edge, right_edge,
+                                        &mid_min);
 
        /* Determine the amount we can change DQS (which is -mid_min) */
        orig_mid_min = mid_min;
        new_dqs = start_dqs - mid_min;
-       if (new_dqs > IO_DQS_IN_DELAY_MAX)
-               new_dqs = IO_DQS_IN_DELAY_MAX;
+       if (new_dqs > seq->iocfg->dqs_in_delay_max)
+               new_dqs = seq->iocfg->dqs_in_delay_max;
        else if (new_dqs < 0)
                new_dqs = 0;
 
        mid_min = start_dqs - new_dqs;
-       debug_cond(DLEVEL == 1, "vfifo_center: new mid_min=%d new_dqs=%d\n",
+       debug_cond(DLEVEL >= 1, "vfifo_center: new mid_min=%d new_dqs=%d\n",
                   mid_min, new_dqs);
 
-       if (IO_SHIFT_DQS_EN_WHEN_SHIFT_DQS) {
-               if (start_dqs_en - mid_min > IO_DQS_EN_DELAY_MAX)
-                       mid_min += start_dqs_en - mid_min - IO_DQS_EN_DELAY_MAX;
+       if (seq->iocfg->shift_dqs_en_when_shift_dqs) {
+               if (start_dqs_en - mid_min > seq->iocfg->dqs_en_delay_max)
+                       mid_min += start_dqs_en - mid_min -
+                                  seq->iocfg->dqs_en_delay_max;
                else if (start_dqs_en - mid_min < 0)
                        mid_min += start_dqs_en - mid_min;
        }
        new_dqs = start_dqs - mid_min;
 
-       debug_cond(DLEVEL == 1,
+       debug_cond(DLEVEL >= 1,
                   "vfifo_center: start_dqs=%d start_dqs_en=%d new_dqs=%d mid_min=%d\n",
                   start_dqs,
-                  IO_SHIFT_DQS_EN_WHEN_SHIFT_DQS ? start_dqs_en : -1,
+                  seq->iocfg->shift_dqs_en_when_shift_dqs ? start_dqs_en : -1,
                   new_dqs, mid_min);
 
        /* Add delay to bring centre of all DQ windows to the same "level". */
-       center_dq_windows(0, left_edge, right_edge, mid_min, orig_mid_min,
+       center_dq_windows(seq, 0, left_edge, right_edge, mid_min, orig_mid_min,
                          min_index, test_bgn, &dq_margin, &dqs_margin);
 
        /* Move DQS-en */
-       if (IO_SHIFT_DQS_EN_WHEN_SHIFT_DQS) {
+       if (seq->iocfg->shift_dqs_en_when_shift_dqs) {
                final_dqs_en = start_dqs_en - mid_min;
                scc_mgr_set_dqs_en_delay(rw_group, final_dqs_en);
                scc_mgr_load_dqs(rw_group);
@@ -2527,7 +2547,7 @@ static int rw_mgr_mem_calibrate_vfifo_center(const u32 rank_bgn,
        /* Move DQS */
        scc_mgr_set_dqs_bus_in_delay(rw_group, new_dqs);
        scc_mgr_load_dqs(rw_group);
-       debug_cond(DLEVEL == 2,
+       debug_cond(DLEVEL >= 2,
                   "%s:%d vfifo_center: dq_margin=%d dqs_margin=%d",
                   __func__, __LINE__, dq_margin, dqs_margin);
 
@@ -2544,7 +2564,8 @@ static int rw_mgr_mem_calibrate_vfifo_center(const u32 rank_bgn,
 }
 
 /**
- * rw_mgr_mem_calibrate_guaranteed_write() - Perform guaranteed write into the device
+ * rw_mgr_mem_calibrate_guaranteed_write() - Perform guaranteed write into the
+ * device
  * @rw_group:  Read/Write Group
  * @phase:     DQ/DQS phase
  *
@@ -2552,15 +2573,16 @@ static int rw_mgr_mem_calibrate_vfifo_center(const u32 rank_bgn,
  * device, the sequencer uses a guaranteed write mechanism to write data into
  * the memory device.
  */
-static int rw_mgr_mem_calibrate_guaranteed_write(const u32 rw_group,
+static int rw_mgr_mem_calibrate_guaranteed_write(struct socfpga_sdrseq *seq,
+                                                const u32 rw_group,
                                                 const u32 phase)
 {
        int ret;
 
        /* Set a particular DQ/DQS phase. */
-       scc_mgr_set_dqdqs_output_phase_all_ranks(rw_group, phase);
+       scc_mgr_set_dqdqs_output_phase_all_ranks(seq, rw_group, phase);
 
-       debug_cond(DLEVEL == 1, "%s:%d guaranteed write: g=%u p=%u\n",
+       debug_cond(DLEVEL >= 1, "%s:%d guaranteed write: g=%u p=%u\n",
                   __func__, __LINE__, rw_group, phase);
 
        /*
@@ -2568,18 +2590,18 @@ static int rw_mgr_mem_calibrate_guaranteed_write(const u32 rw_group,
         * Load up the patterns used by read calibration using the
         * current DQDQS phase.
         */
-       rw_mgr_mem_calibrate_read_load_patterns(0, 1);
+       rw_mgr_mem_calibrate_read_load_patterns(seq, 0, 1);
 
-       if (gbl->phy_debug_mode_flags & PHY_DEBUG_DISABLE_GUARANTEED_READ)
+       if (seq->gbl.phy_debug_mode_flags & PHY_DEBUG_DISABLE_GUARANTEED_READ)
                return 0;
 
        /*
         * Altera EMI_RM 2015.05.04 :: Figure 1-26
         * Back-to-Back reads of the patterns used for calibration.
         */
-       ret = rw_mgr_mem_calibrate_read_test_patterns(0, rw_group, 1);
+       ret = rw_mgr_mem_calibrate_read_test_patterns(seq, 0, rw_group, 1);
        if (ret)
-               debug_cond(DLEVEL == 1,
+               debug_cond(DLEVEL >= 1,
                           "%s:%d Guaranteed read test failed: g=%u p=%u\n",
                           __func__, __LINE__, rw_group, phase);
        return ret;
@@ -2593,8 +2615,10 @@ static int rw_mgr_mem_calibrate_guaranteed_write(const u32 rw_group,
  * DQS enable calibration ensures reliable capture of the DQ signal without
  * glitches on the DQS line.
  */
-static int rw_mgr_mem_calibrate_dqs_enable_calibration(const u32 rw_group,
-                                                      const u32 test_bgn)
+static int
+rw_mgr_mem_calibrate_dqs_enable_calibration(struct socfpga_sdrseq *seq,
+                                           const u32 rw_group,
+                                           const u32 test_bgn)
 {
        /*
         * Altera EMI_RM 2015.05.04 :: Figure 1-27
@@ -2602,20 +2626,20 @@ static int rw_mgr_mem_calibrate_dqs_enable_calibration(const u32 rw_group,
         */
 
        /* We start at zero, so have one less dq to devide among */
-       const u32 delay_step = IO_IO_IN_DELAY_MAX /
-                              (RW_MGR_MEM_DQ_PER_READ_DQS - 1);
+       const u32 delay_step = seq->iocfg->io_in_delay_max /
+                              (seq->rwcfg->mem_dq_per_read_dqs - 1);
        int ret;
        u32 i, p, d, r;
 
        debug("%s:%d (%u,%u)\n", __func__, __LINE__, rw_group, test_bgn);
 
        /* Try different dq_in_delays since the DQ path is shorter than DQS. */
-       for (r = 0; r < RW_MGR_MEM_NUMBER_OF_RANKS;
+       for (r = 0; r < seq->rwcfg->mem_number_of_ranks;
             r += NUM_RANKS_PER_SHADOW_REG) {
                for (i = 0, p = test_bgn, d = 0;
-                    i < RW_MGR_MEM_DQ_PER_READ_DQS;
+                    i < seq->rwcfg->mem_dq_per_read_dqs;
                     i++, p++, d += delay_step) {
-                       debug_cond(DLEVEL == 1,
+                       debug_cond(DLEVEL >= 1,
                                   "%s:%d: g=%u r=%u i=%u p=%u d=%u\n",
                                   __func__, __LINE__, rw_group, r, i, p, d);
 
@@ -2630,15 +2654,15 @@ static int rw_mgr_mem_calibrate_dqs_enable_calibration(const u32 rw_group,
         * Try rw_mgr_mem_calibrate_vfifo_find_dqs_en_phase across different
         * dq_in_delay values
         */
-       ret = rw_mgr_mem_calibrate_vfifo_find_dqs_en_phase(rw_group);
+       ret = rw_mgr_mem_calibrate_vfifo_find_dqs_en_phase(seq, rw_group);
 
-       debug_cond(DLEVEL == 1,
+       debug_cond(DLEVEL >= 1,
                   "%s:%d: g=%u found=%u; Reseting delay chain to zero\n",
                   __func__, __LINE__, rw_group, !ret);
 
-       for (r = 0; r < RW_MGR_MEM_NUMBER_OF_RANKS;
+       for (r = 0; r < seq->rwcfg->mem_number_of_ranks;
             r += NUM_RANKS_PER_SHADOW_REG) {
-               scc_mgr_apply_group_dq_in_delay(test_bgn, 0);
+               scc_mgr_apply_group_dq_in_delay(seq, test_bgn, 0);
                writel(0, &sdr_scc_mgr->update);
        }
 
@@ -2656,7 +2680,8 @@ static int rw_mgr_mem_calibrate_dqs_enable_calibration(const u32 rw_group,
  * within a group.
  */
 static int
-rw_mgr_mem_calibrate_dq_dqs_centering(const u32 rw_group, const u32 test_bgn,
+rw_mgr_mem_calibrate_dq_dqs_centering(struct socfpga_sdrseq *seq,
+                                     const u32 rw_group, const u32 test_bgn,
                                      const int use_read_test,
                                      const int update_fom)
 
@@ -2670,13 +2695,9 @@ rw_mgr_mem_calibrate_dq_dqs_centering(const u32 rw_group, const u32 test_bgn,
         */
        grp_calibrated = 1;
        for (rank_bgn = 0, sr = 0;
-            rank_bgn < RW_MGR_MEM_NUMBER_OF_RANKS;
+            rank_bgn < seq->rwcfg->mem_number_of_ranks;
             rank_bgn += NUM_RANKS_PER_SHADOW_REG, sr++) {
-               /* Check if this set of ranks should be skipped entirely. */
-               if (param->skip_shadow_regs[sr])
-                       continue;
-
-               ret = rw_mgr_mem_calibrate_vfifo_center(rank_bgn, rw_group,
+               ret = rw_mgr_mem_calibrate_vfifo_center(seq, rank_bgn, rw_group,
                                                        test_bgn,
                                                        use_read_test,
                                                        update_fom);
@@ -2707,11 +2728,12 @@ rw_mgr_mem_calibrate_dq_dqs_centering(const u32 rw_group, const u32 test_bgn,
  *   - DQS input phase  and DQS input delay (DQ/DQS Centering)
  *  - we also do a per-bit deskew on the DQ lines.
  */
-static int rw_mgr_mem_calibrate_vfifo(const u32 rw_group, const u32 test_bgn)
+static int rw_mgr_mem_calibrate_vfifo(struct socfpga_sdrseq *seq,
+                                     const u32 rw_group, const u32 test_bgn)
 {
-       uint32_t p, d;
-       uint32_t dtaps_per_ptap;
-       uint32_t failed_substage;
+       u32 p, d;
+       u32 dtaps_per_ptap;
+       u32 failed_substage;
 
        int ret;
 
@@ -2725,8 +2747,9 @@ static int rw_mgr_mem_calibrate_vfifo(const u32 rw_group, const u32 test_bgn)
        failed_substage = CAL_SUBSTAGE_GUARANTEED_READ;
 
        /* USER Determine number of delay taps for each phase tap. */
-       dtaps_per_ptap = DIV_ROUND_UP(IO_DELAY_PER_OPA_TAP,
-                                     IO_DELAY_PER_DQS_EN_DCHAIN_TAP) - 1;
+       dtaps_per_ptap = DIV_ROUND_UP(seq->iocfg->delay_per_opa_tap,
+                                     seq->iocfg->delay_per_dqs_en_dchain_tap)
+                                     - 1;
 
        for (d = 0; d <= dtaps_per_ptap; d += 2) {
                /*
@@ -2736,18 +2759,22 @@ static int rw_mgr_mem_calibrate_vfifo(const u32 rw_group, const u32 test_bgn)
                 * output side yet.
                 */
                if (d > 0) {
-                       scc_mgr_apply_group_all_out_delay_add_all_ranks(
-                                                               rw_group, d);
+                       scc_mgr_apply_group_all_out_delay_add_all_ranks(seq,
+                                                                       rw_group,
+                                                                       d);
                }
 
-               for (p = 0; p <= IO_DQDQS_OUT_PHASE_MAX; p++) {
+               for (p = 0; p <= seq->iocfg->dqdqs_out_phase_max; p++) {
                        /* 1) Guaranteed Write */
-                       ret = rw_mgr_mem_calibrate_guaranteed_write(rw_group, p);
+                       ret = rw_mgr_mem_calibrate_guaranteed_write(seq,
+                                                                   rw_group,
+                                                                   p);
                        if (ret)
                                break;
 
                        /* 2) DQS Enable Calibration */
-                       ret = rw_mgr_mem_calibrate_dqs_enable_calibration(rw_group,
+                       ret = rw_mgr_mem_calibrate_dqs_enable_calibration(seq,
+                                                                         rw_group,
                                                                          test_bgn);
                        if (ret) {
                                failed_substage = CAL_SUBSTAGE_DQS_EN_PHASE;
@@ -2759,8 +2786,10 @@ static int rw_mgr_mem_calibrate_vfifo(const u32 rw_group, const u32 test_bgn)
                         * If doing read after write calibration, do not update
                         * FOM now. Do it then.
                         */
-                       ret = rw_mgr_mem_calibrate_dq_dqs_centering(rw_group,
-                                                               test_bgn, 1, 0);
+                       ret = rw_mgr_mem_calibrate_dq_dqs_centering(seq,
+                                                                   rw_group,
+                                                                   test_bgn,
+                                                                   1, 0);
                        if (ret) {
                                failed_substage = CAL_SUBSTAGE_VFIFO_CENTER;
                                continue;
@@ -2772,7 +2801,8 @@ static int rw_mgr_mem_calibrate_vfifo(const u32 rw_group, const u32 test_bgn)
        }
 
        /* Calibration Stage 1 failed. */
-       set_failing_group_stage(rw_group, CAL_STAGE_VFIFO, failed_substage);
+       set_failing_group_stage(seq, rw_group, CAL_STAGE_VFIFO,
+                               failed_substage);
        return 0;
 
        /* Calibration Stage 1 completed OK. */
@@ -2783,7 +2813,7 @@ cal_done_ok:
         * first case).
         */
        if (d > 2)
-               scc_mgr_zero_group(rw_group, 1);
+               scc_mgr_zero_group(seq, rw_group, 1);
 
        return 1;
 }
@@ -2798,7 +2828,8 @@ cal_done_ok:
  * This function implements UniPHY calibration Stage 3, as explained in
  * detail in Altera EMI_RM 2015.05.04 , "UniPHY Calibration Stages".
  */
-static int rw_mgr_mem_calibrate_vfifo_end(const u32 rw_group,
+static int rw_mgr_mem_calibrate_vfifo_end(struct socfpga_sdrseq *seq,
+                                         const u32 rw_group,
                                          const u32 test_bgn)
 {
        int ret;
@@ -2810,73 +2841,81 @@ static int rw_mgr_mem_calibrate_vfifo_end(const u32 rw_group,
        reg_file_set_stage(CAL_STAGE_VFIFO_AFTER_WRITES);
        reg_file_set_sub_stage(CAL_SUBSTAGE_VFIFO_CENTER);
 
-       ret = rw_mgr_mem_calibrate_dq_dqs_centering(rw_group, test_bgn, 0, 1);
+       ret = rw_mgr_mem_calibrate_dq_dqs_centering(seq, rw_group, test_bgn, 0,
+                                                   1);
        if (ret)
-               set_failing_group_stage(rw_group,
+               set_failing_group_stage(seq, rw_group,
                                        CAL_STAGE_VFIFO_AFTER_WRITES,
                                        CAL_SUBSTAGE_VFIFO_CENTER);
        return ret;
 }
 
-/* Calibrate LFIFO to find smallest read latency */
-static uint32_t rw_mgr_mem_calibrate_lfifo(void)
+/**
+ * rw_mgr_mem_calibrate_lfifo() - Minimize latency
+ *
+ * Stage 4: Minimize latency.
+ *
+ * This function implements UniPHY calibration Stage 4, as explained in
+ * detail in Altera EMI_RM 2015.05.04 , "UniPHY Calibration Stages".
+ * Calibrate LFIFO to find smallest read latency.
+ */
+static u32 rw_mgr_mem_calibrate_lfifo(struct socfpga_sdrseq *seq)
 {
-       uint32_t found_one;
+       int found_one = 0;
 
        debug("%s:%d\n", __func__, __LINE__);
 
-       /* update info for sims */
+       /* Update info for sims. */
        reg_file_set_stage(CAL_STAGE_LFIFO);
        reg_file_set_sub_stage(CAL_SUBSTAGE_READ_LATENCY);
 
        /* Load up the patterns used by read calibration for all ranks */
-       rw_mgr_mem_calibrate_read_load_patterns(0, 1);
-       found_one = 0;
+       rw_mgr_mem_calibrate_read_load_patterns(seq, 0, 1);
 
        do {
-               writel(gbl->curr_read_lat, &phy_mgr_cfg->phy_rlat);
-               debug_cond(DLEVEL == 2, "%s:%d lfifo: read_lat=%u",
-                          __func__, __LINE__, gbl->curr_read_lat);
+               writel(seq->gbl.curr_read_lat, &phy_mgr_cfg->phy_rlat);
+               debug_cond(DLEVEL >= 2, "%s:%d lfifo: read_lat=%u",
+                          __func__, __LINE__, seq->gbl.curr_read_lat);
 
-               if (!rw_mgr_mem_calibrate_read_test_all_ranks(0,
+               if (!rw_mgr_mem_calibrate_read_test_all_ranks(seq, 0,
                                                              NUM_READ_TESTS,
-                                                             PASS_ALL_BITS,
-                                                             1)) {
+                                                             PASS_ALL_BITS, 1))
                        break;
-               }
 
                found_one = 1;
-               /* reduce read latency and see if things are working */
-               /* correctly */
-               gbl->curr_read_lat--;
-       } while (gbl->curr_read_lat > 0);
-
-       /* reset the fifos to get pointers to known state */
+               /*
+                * Reduce read latency and see if things are
+                * working correctly.
+                */
+               seq->gbl.curr_read_lat--;
+       } while (seq->gbl.curr_read_lat > 0);
 
+       /* Reset the fifos to get pointers to known state. */
        writel(0, &phy_mgr_cmd->fifo_reset);
 
        if (found_one) {
-               /* add a fudge factor to the read latency that was determined */
-               gbl->curr_read_lat += 2;
-               writel(gbl->curr_read_lat, &phy_mgr_cfg->phy_rlat);
-               debug_cond(DLEVEL == 2, "%s:%d lfifo: success: using \
-                          read_lat=%u\n", __func__, __LINE__,
-                          gbl->curr_read_lat);
-               return 1;
+               /* Add a fudge factor to the read latency that was determined */
+               seq->gbl.curr_read_lat += 2;
+               writel(seq->gbl.curr_read_lat, &phy_mgr_cfg->phy_rlat);
+               debug_cond(DLEVEL >= 2,
+                          "%s:%d lfifo: success: using read_lat=%u\n",
+                          __func__, __LINE__, seq->gbl.curr_read_lat);
        } else {
-               set_failing_group_stage(0xff, CAL_STAGE_LFIFO,
+               set_failing_group_stage(seq, 0xff, CAL_STAGE_LFIFO,
                                        CAL_SUBSTAGE_READ_LATENCY);
 
-               debug_cond(DLEVEL == 2, "%s:%d lfifo: failed at initial \
-                          read_lat=%u\n", __func__, __LINE__,
-                          gbl->curr_read_lat);
-               return 0;
+               debug_cond(DLEVEL >= 2,
+                          "%s:%d lfifo: failed at initial read_lat=%u\n",
+                          __func__, __LINE__, seq->gbl.curr_read_lat);
        }
+
+       return found_one;
 }
 
 /**
  * search_window() - Search for the/part of the window with DM/DQS shift
- * @search_dm:         If 1, search for the DM shift, if 0, search for DQS shift
+ * @search_dm:         If 1, search for the DM shift, if 0, search for DQS
+ *                     shift
  * @rank_bgn:          Rank number
  * @write_group:       Write Group
  * @bgn_curr:          Current window begin
@@ -2888,35 +2927,37 @@ static uint32_t rw_mgr_mem_calibrate_lfifo(void)
  *
  * Search for the/part of the window with DM/DQS shift.
  */
-static void search_window(const int search_dm,
-                         const u32 rank_bgn, const u32 write_group,
-                         int *bgn_curr, int *end_curr, int *bgn_best,
-                         int *end_best, int *win_best, int new_dqs)
+static void search_window(struct socfpga_sdrseq *seq,
+                         const int search_dm, const u32 rank_bgn,
+                         const u32 write_group, int *bgn_curr, int *end_curr,
+                         int *bgn_best, int *end_best, int *win_best,
+                         int new_dqs)
 {
        u32 bit_chk;
-       const int max = IO_IO_OUT1_DELAY_MAX - new_dqs;
+       const int max = seq->iocfg->io_out1_delay_max - new_dqs;
        int d, di;
 
        /* Search for the/part of the window with DM/DQS shift. */
        for (di = max; di >= 0; di -= DELTA_D) {
                if (search_dm) {
                        d = di;
-                       scc_mgr_apply_group_dm_out1_delay(d);
+                       scc_mgr_apply_group_dm_out1_delay(seq, d);
                } else {
                        /* For DQS, we go from 0...max */
                        d = max - di;
                        /*
-                        * Note: This only shifts DQS, so are we limiting ourselve to
-                        * width of DQ unnecessarily.
+                        * Note: This only shifts DQS, so are we limiting
+                        *       ourselves to width of DQ unnecessarily.
                         */
-                       scc_mgr_apply_group_dqs_io_and_oct_out1(write_group,
+                       scc_mgr_apply_group_dqs_io_and_oct_out1(seq,
+                                                               write_group,
                                                                d + new_dqs);
                }
 
                writel(0, &sdr_scc_mgr->update);
 
-               if (rw_mgr_mem_calibrate_write_test(rank_bgn, write_group, 1,
-                                                   PASS_ALL_BITS, &bit_chk,
+               if (rw_mgr_mem_calibrate_write_test(seq, rank_bgn, write_group,
+                                                   1, PASS_ALL_BITS, &bit_chk,
                                                    0)) {
                        /* Set current end of the window. */
                        *end_curr = search_dm ? -d : d;
@@ -2925,7 +2966,7 @@ static void search_window(const int search_dm,
                         * If a starting edge of our window has not been seen
                         * this is our current start of the DM window.
                         */
-                       if (*bgn_curr == IO_IO_OUT1_DELAY_MAX + 1)
+                       if (*bgn_curr == seq->iocfg->io_out1_delay_max + 1)
                                *bgn_curr = search_dm ? -d : d;
 
                        /*
@@ -2939,8 +2980,8 @@ static void search_window(const int search_dm,
                        }
                } else {
                        /* We just saw a failing test. Reset temp edge. */
-                       *bgn_curr = IO_IO_OUT1_DELAY_MAX + 1;
-                       *end_curr = IO_IO_OUT1_DELAY_MAX + 1;
+                       *bgn_curr = seq->iocfg->io_out1_delay_max + 1;
+                       *end_curr = seq->iocfg->io_out1_delay_max + 1;
 
                        /* Early exit is only applicable to DQS. */
                        if (search_dm)
@@ -2951,7 +2992,8 @@ static void search_window(const int search_dm,
                         * chain space is less than already seen largest
                         * window we can exit.
                         */
-                       if (*win_best - 1 > IO_IO_OUT1_DELAY_MAX - new_dqs - d)
+                       if (*win_best - 1 > seq->iocfg->io_out1_delay_max
+                               - new_dqs - d)
                                break;
                }
        }
@@ -2967,22 +3009,23 @@ static void search_window(const int search_dm,
  * certain windows.
  */
 static int
-rw_mgr_mem_calibrate_writes_center(const u32 rank_bgn, const u32 write_group,
+rw_mgr_mem_calibrate_writes_center(struct socfpga_sdrseq *seq,
+                                  const u32 rank_bgn, const u32 write_group,
                                   const u32 test_bgn)
 {
        int i;
        u32 sticky_bit_chk;
        u32 min_index;
-       int left_edge[RW_MGR_MEM_DQ_PER_WRITE_DQS];
-       int right_edge[RW_MGR_MEM_DQ_PER_WRITE_DQS];
+       int left_edge[seq->rwcfg->mem_dq_per_write_dqs];
+       int right_edge[seq->rwcfg->mem_dq_per_write_dqs];
        int mid;
        int mid_min, orig_mid_min;
        int new_dqs, start_dqs;
        int dq_margin, dqs_margin, dm_margin;
-       int bgn_curr = IO_IO_OUT1_DELAY_MAX + 1;
-       int end_curr = IO_IO_OUT1_DELAY_MAX + 1;
-       int bgn_best = IO_IO_OUT1_DELAY_MAX + 1;
-       int end_best = IO_IO_OUT1_DELAY_MAX + 1;
+       int bgn_curr = seq->iocfg->io_out1_delay_max + 1;
+       int end_curr = seq->iocfg->io_out1_delay_max + 1;
+       int bgn_best = seq->iocfg->io_out1_delay_max + 1;
+       int end_best = seq->iocfg->io_out1_delay_max + 1;
        int win_best = 0;
 
        int ret;
@@ -2993,70 +3036,72 @@ rw_mgr_mem_calibrate_writes_center(const u32 rank_bgn, const u32 write_group,
 
        start_dqs = readl((SDR_PHYGRP_SCCGRP_ADDRESS |
                          SCC_MGR_IO_OUT1_DELAY_OFFSET) +
-                         (RW_MGR_MEM_DQ_PER_WRITE_DQS << 2));
+                         (seq->rwcfg->mem_dq_per_write_dqs << 2));
 
        /* Per-bit deskew. */
 
        /*
         * Set the left and right edge of each bit to an illegal value.
-        * Use (IO_IO_OUT1_DELAY_MAX + 1) as an illegal value.
+        * Use (seq->iocfg->io_out1_delay_max + 1) as an illegal value.
         */
        sticky_bit_chk = 0;
-       for (i = 0; i < RW_MGR_MEM_DQ_PER_WRITE_DQS; i++) {
-               left_edge[i]  = IO_IO_OUT1_DELAY_MAX + 1;
-               right_edge[i] = IO_IO_OUT1_DELAY_MAX + 1;
+       for (i = 0; i < seq->rwcfg->mem_dq_per_write_dqs; i++) {
+               left_edge[i]  = seq->iocfg->io_out1_delay_max + 1;
+               right_edge[i] = seq->iocfg->io_out1_delay_max + 1;
        }
 
        /* Search for the left edge of the window for each bit. */
-       search_left_edge(1, rank_bgn, write_group, 0, test_bgn,
+       search_left_edge(seq, 1, rank_bgn, write_group, 0, test_bgn,
                         &sticky_bit_chk,
                         left_edge, right_edge, 0);
 
        /* Search for the right edge of the window for each bit. */
-       ret = search_right_edge(1, rank_bgn, write_group, 0,
+       ret = search_right_edge(seq, 1, rank_bgn, write_group, 0,
                                start_dqs, 0,
                                &sticky_bit_chk,
                                left_edge, right_edge, 0);
        if (ret) {
-               set_failing_group_stage(test_bgn + ret - 1, CAL_STAGE_WRITES,
+               set_failing_group_stage(seq, test_bgn + ret - 1,
+                                       CAL_STAGE_WRITES,
                                        CAL_SUBSTAGE_WRITES_CENTER);
                return -EINVAL;
        }
 
-       min_index = get_window_mid_index(1, left_edge, right_edge, &mid_min);
+       min_index = get_window_mid_index(seq, 1, left_edge, right_edge,
+                                        &mid_min);
 
        /* Determine the amount we can change DQS (which is -mid_min). */
        orig_mid_min = mid_min;
        new_dqs = start_dqs;
        mid_min = 0;
-       debug_cond(DLEVEL == 1,
+       debug_cond(DLEVEL >= 1,
                   "%s:%d write_center: start_dqs=%d new_dqs=%d mid_min=%d\n",
                   __func__, __LINE__, start_dqs, new_dqs, mid_min);
 
        /* Add delay to bring centre of all DQ windows to the same "level". */
-       center_dq_windows(1, left_edge, right_edge, mid_min, orig_mid_min,
+       center_dq_windows(seq, 1, left_edge, right_edge, mid_min, orig_mid_min,
                          min_index, 0, &dq_margin, &dqs_margin);
 
        /* Move DQS */
-       scc_mgr_apply_group_dqs_io_and_oct_out1(write_group, new_dqs);
+       scc_mgr_apply_group_dqs_io_and_oct_out1(seq, write_group, new_dqs);
        writel(0, &sdr_scc_mgr->update);
 
        /* Centre DM */
-       debug_cond(DLEVEL == 2, "%s:%d write_center: DM\n", __func__, __LINE__);
+       debug_cond(DLEVEL >= 2, "%s:%d write_center: DM\n", __func__, __LINE__);
 
        /*
         * Set the left and right edge of each bit to an illegal value.
-        * Use (IO_IO_OUT1_DELAY_MAX + 1) as an illegal value.
+        * Use (seq->iocfg->io_out1_delay_max + 1) as an illegal value.
         */
-       left_edge[0]  = IO_IO_OUT1_DELAY_MAX + 1;
-       right_edge[0] = IO_IO_OUT1_DELAY_MAX + 1;
+       left_edge[0]  = seq->iocfg->io_out1_delay_max + 1;
+       right_edge[0] = seq->iocfg->io_out1_delay_max + 1;
 
        /* Search for the/part of the window with DM shift. */
-       search_window(1, rank_bgn, write_group, &bgn_curr, &end_curr,
+       search_window(seq, 1, rank_bgn, write_group, &bgn_curr, &end_curr,
                      &bgn_best, &end_best, &win_best, 0);
 
        /* Reset DM delay chains to 0. */
-       scc_mgr_apply_group_dm_out1_delay(0);
+       scc_mgr_apply_group_dm_out1_delay(seq, 0);
 
        /*
         * Check to see if the current window nudges up aganist 0 delay.
@@ -3064,23 +3109,23 @@ rw_mgr_mem_calibrate_writes_center(const u32 rank_bgn, const u32 write_group,
         * search begins as a new search.
         */
        if (end_curr != 0) {
-               bgn_curr = IO_IO_OUT1_DELAY_MAX + 1;
-               end_curr = IO_IO_OUT1_DELAY_MAX + 1;
+               bgn_curr = seq->iocfg->io_out1_delay_max + 1;
+               end_curr = seq->iocfg->io_out1_delay_max + 1;
        }
 
        /* Search for the/part of the window with DQS shifts. */
-       search_window(0, rank_bgn, write_group, &bgn_curr, &end_curr,
+       search_window(seq, 0, rank_bgn, write_group, &bgn_curr, &end_curr,
                      &bgn_best, &end_best, &win_best, new_dqs);
 
        /* Assign left and right edge for cal and reporting. */
        left_edge[0] = -1 * bgn_best;
        right_edge[0] = end_best;
 
-       debug_cond(DLEVEL == 2, "%s:%d dm_calib: left=%d right=%d\n",
+       debug_cond(DLEVEL >= 2, "%s:%d dm_calib: left=%d right=%d\n",
                   __func__, __LINE__, left_edge[0], right_edge[0]);
 
        /* Move DQS (back to orig). */
-       scc_mgr_apply_group_dqs_io_and_oct_out1(write_group, new_dqs);
+       scc_mgr_apply_group_dqs_io_and_oct_out1(seq, write_group, new_dqs);
 
        /* Move DM */
 
@@ -3097,17 +3142,17 @@ rw_mgr_mem_calibrate_writes_center(const u32 rank_bgn, const u32 write_group,
        else
                dm_margin = left_edge[0] - mid;
 
-       scc_mgr_apply_group_dm_out1_delay(mid);
+       scc_mgr_apply_group_dm_out1_delay(seq, mid);
        writel(0, &sdr_scc_mgr->update);
 
-       debug_cond(DLEVEL == 2,
+       debug_cond(DLEVEL >= 2,
                   "%s:%d dm_calib: left=%d right=%d mid=%d dm_margin=%d\n",
                   __func__, __LINE__, left_edge[0], right_edge[0],
                   mid, dm_margin);
        /* Export values. */
-       gbl->fom_out += dq_margin + dqs_margin;
+       seq->gbl.fom_out += dq_margin + dqs_margin;
 
-       debug_cond(DLEVEL == 2,
+       debug_cond(DLEVEL >= 2,
                   "%s:%d write_center: dq_margin=%d dqs_margin=%d dm_margin=%d\n",
                   __func__, __LINE__, dq_margin, dqs_margin, dm_margin);
 
@@ -3134,7 +3179,8 @@ rw_mgr_mem_calibrate_writes_center(const u32 rank_bgn, const u32 write_group,
  * This function implements UniPHY calibration Stage 2, as explained in
  * detail in Altera EMI_RM 2015.05.04 , "UniPHY Calibration Stages".
  */
-static int rw_mgr_mem_calibrate_writes(const u32 rank_bgn, const u32 group,
+static int rw_mgr_mem_calibrate_writes(struct socfpga_sdrseq *seq,
+                                      const u32 rank_bgn, const u32 group,
                                       const u32 test_bgn)
 {
        int ret;
@@ -3146,9 +3192,10 @@ static int rw_mgr_mem_calibrate_writes(const u32 rank_bgn, const u32 group,
        reg_file_set_stage(CAL_STAGE_WRITES);
        reg_file_set_sub_stage(CAL_SUBSTAGE_WRITES_CENTER);
 
-       ret = rw_mgr_mem_calibrate_writes_center(rank_bgn, group, test_bgn);
+       ret = rw_mgr_mem_calibrate_writes_center(seq, rank_bgn, group,
+                                                test_bgn);
        if (ret)
-               set_failing_group_stage(group, CAL_STAGE_WRITES,
+               set_failing_group_stage(seq, group, CAL_STAGE_WRITES,
                                        CAL_SUBSTAGE_WRITES_CENTER);
 
        return ret;
@@ -3159,33 +3206,30 @@ static int rw_mgr_mem_calibrate_writes(const u32 rank_bgn, const u32 group,
  *
  * Precharge all banks and activate row 0 in bank "000..." and bank "111...".
  */
-static void mem_precharge_and_activate(void)
+static void mem_precharge_and_activate(struct socfpga_sdrseq *seq)
 {
        int r;
 
-       for (r = 0; r < RW_MGR_MEM_NUMBER_OF_RANKS; r++) {
-               /* Test if the rank should be skipped. */
-               if (param->skip_ranks[r])
-                       continue;
-
+       for (r = 0; r < seq->rwcfg->mem_number_of_ranks; r++) {
                /* Set rank. */
-               set_rank_and_odt_mask(r, RW_MGR_ODT_MODE_OFF);
+               set_rank_and_odt_mask(seq, r, RW_MGR_ODT_MODE_OFF);
 
                /* Precharge all banks. */
-               writel(RW_MGR_PRECHARGE_ALL, SDR_PHYGRP_RWMGRGRP_ADDRESS |
+               writel(seq->rwcfg->precharge_all, SDR_PHYGRP_RWMGRGRP_ADDRESS |
                                             RW_MGR_RUN_SINGLE_GROUP_OFFSET);
 
                writel(0x0F, &sdr_rw_load_mgr_regs->load_cntr0);
-               writel(RW_MGR_ACTIVATE_0_AND_1_WAIT1,
-                       &sdr_rw_load_jump_mgr_regs->load_jump_add0);
+               writel(seq->rwcfg->activate_0_and_1_wait1,
+                      &sdr_rw_load_jump_mgr_regs->load_jump_add0);
 
                writel(0x0F, &sdr_rw_load_mgr_regs->load_cntr1);
-               writel(RW_MGR_ACTIVATE_0_AND_1_WAIT2,
-                       &sdr_rw_load_jump_mgr_regs->load_jump_add1);
+               writel(seq->rwcfg->activate_0_and_1_wait2,
+                      &sdr_rw_load_jump_mgr_regs->load_jump_add1);
 
                /* Activate rows. */
-               writel(RW_MGR_ACTIVATE_0_AND_1, SDR_PHYGRP_RWMGRGRP_ADDRESS |
-                                               RW_MGR_RUN_SINGLE_GROUP_OFFSET);
+               writel(seq->rwcfg->activate_0_and_1,
+                      SDR_PHYGRP_RWMGRGRP_ADDRESS |
+                      RW_MGR_RUN_SINGLE_GROUP_OFFSET);
        }
 }
 
@@ -3194,14 +3238,15 @@ static void mem_precharge_and_activate(void)
  *
  * Configure memory RLAT and WLAT parameters.
  */
-static void mem_init_latency(void)
+static void mem_init_latency(struct socfpga_sdrseq *seq)
 {
        /*
         * For AV/CV, LFIFO is hardened and always runs at full rate
         * so max latency in AFI clocks, used here, is correspondingly
         * smaller.
         */
-       const u32 max_latency = (1 << MAX_LATENCY_COUNT_WIDTH) - 1;
+       const u32 max_latency = (1 << seq->misccfg->max_latency_count_width)
+               - 1;
        u32 rlat, wlat;
 
        debug("%s:%d\n", __func__, __LINE__);
@@ -3213,17 +3258,17 @@ static void mem_init_latency(void)
        wlat = readl(&data_mgr->t_wl_add);
        wlat += readl(&data_mgr->mem_t_add);
 
-       gbl->rw_wl_nop_cycles = wlat - 1;
+       seq->gbl.rw_wl_nop_cycles = wlat - 1;
 
        /* Read in readl latency. */
        rlat = readl(&data_mgr->t_rl_add);
 
        /* Set a pretty high read latency initially. */
-       gbl->curr_read_lat = rlat + 16;
-       if (gbl->curr_read_lat > max_latency)
-               gbl->curr_read_lat = max_latency;
+       seq->gbl.curr_read_lat = rlat + 16;
+       if (seq->gbl.curr_read_lat > max_latency)
+               seq->gbl.curr_read_lat = max_latency;
 
-       writel(gbl->curr_read_lat, &phy_mgr_cfg->phy_rlat);
+       writel(seq->gbl.curr_read_lat, &phy_mgr_cfg->phy_rlat);
 
        /* Advertise write latency. */
        writel(wlat, &phy_mgr_cfg->afi_wlat);
@@ -3234,26 +3279,25 @@ static void mem_init_latency(void)
  *
  * Set VFIFO and LFIFO to instant-on settings in skip calibration mode.
  */
-static void mem_skip_calibrate(void)
+static void mem_skip_calibrate(struct socfpga_sdrseq *seq)
 {
-       uint32_t vfifo_offset;
-       uint32_t i, j, r;
+       u32 vfifo_offset;
+       u32 i, j, r;
 
        debug("%s:%d\n", __func__, __LINE__);
        /* Need to update every shadow register set used by the interface */
-       for (r = 0; r < RW_MGR_MEM_NUMBER_OF_RANKS;
+       for (r = 0; r < seq->rwcfg->mem_number_of_ranks;
             r += NUM_RANKS_PER_SHADOW_REG) {
                /*
                 * Set output phase alignment settings appropriate for
                 * skip calibration.
                 */
-               for (i = 0; i < RW_MGR_MEM_IF_READ_DQS_WIDTH; i++) {
+               for (i = 0; i < seq->rwcfg->mem_if_read_dqs_width; i++) {
                        scc_mgr_set_dqs_en_phase(i, 0);
-#if IO_DLL_CHAIN_LENGTH == 6
-                       scc_mgr_set_dqdqs_output_phase(i, 6);
-#else
-                       scc_mgr_set_dqdqs_output_phase(i, 7);
-#endif
+                       if (seq->iocfg->dll_chain_length == 6)
+                               scc_mgr_set_dqdqs_output_phase(i, 6);
+                       else
+                               scc_mgr_set_dqdqs_output_phase(i, 7);
                        /*
                         * Case:33398
                         *
@@ -3272,20 +3316,23 @@ static void mem_skip_calibrate(void)
                         *
                         * Hence, to make DQS aligned to CK, we need to delay
                         * DQS by:
-                        *    (720 - 90 - 180 - 2 * (360 / IO_DLL_CHAIN_LENGTH))
+                        *    (720 - 90 - 180 - 2) *
+                        *      (360 / seq->iocfg->dll_chain_length)
                         *
-                        * Dividing the above by (360 / IO_DLL_CHAIN_LENGTH)
+                        * Dividing the above by
+                        (360 / seq->iocfg->dll_chain_length)
                         * gives us the number of ptaps, which simplies to:
                         *
-                        *    (1.25 * IO_DLL_CHAIN_LENGTH - 2)
+                        *    (1.25 * seq->iocfg->dll_chain_length - 2)
                         */
                        scc_mgr_set_dqdqs_output_phase(i,
-                                       1.25 * IO_DLL_CHAIN_LENGTH - 2);
+                                      ((125 * seq->iocfg->dll_chain_length)
+                                      / 100) - 2);
                }
                writel(0xff, &sdr_scc_mgr->dqs_ena);
                writel(0xff, &sdr_scc_mgr->dqs_io_ena);
 
-               for (i = 0; i < RW_MGR_MEM_IF_WRITE_DQS_WIDTH; i++) {
+               for (i = 0; i < seq->rwcfg->mem_if_write_dqs_width; i++) {
                        writel(i, SDR_PHYGRP_SCCGRP_ADDRESS |
                                  SCC_MGR_GROUP_COUNTER_OFFSET);
                }
@@ -3295,7 +3342,7 @@ static void mem_skip_calibrate(void)
        }
 
        /* Compensate for simulation model behaviour */
-       for (i = 0; i < RW_MGR_MEM_IF_READ_DQS_WIDTH; i++) {
+       for (i = 0; i < seq->rwcfg->mem_if_read_dqs_width; i++) {
                scc_mgr_set_dqs_bus_in_delay(i, 10);
                scc_mgr_load_dqs(i);
        }
@@ -3305,7 +3352,7 @@ static void mem_skip_calibrate(void)
         * ArriaV has hard FIFOs that can only be initialized by incrementing
         * in sequencer.
         */
-       vfifo_offset = CALIB_VFIFO_OFFSET;
+       vfifo_offset = seq->misccfg->calib_vfifo_offset;
        for (j = 0; j < vfifo_offset; j++)
                writel(0xff, &phy_mgr_cmd->inc_vfifo_hard_phy);
        writel(0, &phy_mgr_cmd->fifo_reset);
@@ -3314,8 +3361,8 @@ static void mem_skip_calibrate(void)
         * For Arria V and Cyclone V with hard LFIFO, we get the skip-cal
         * setting from generation-time constant.
         */
-       gbl->curr_read_lat = CALIB_LFIFO_OFFSET;
-       writel(gbl->curr_read_lat, &phy_mgr_cfg->phy_rlat);
+       seq->gbl.curr_read_lat = seq->misccfg->calib_lfifo_offset;
+       writel(seq->gbl.curr_read_lat, &phy_mgr_cfg->phy_rlat);
 }
 
 /**
@@ -3323,35 +3370,35 @@ static void mem_skip_calibrate(void)
  *
  * Perform memory calibration.
  */
-static uint32_t mem_calibrate(void)
+static u32 mem_calibrate(struct socfpga_sdrseq *seq)
 {
-       uint32_t i;
-       uint32_t rank_bgn, sr;
-       uint32_t write_group, write_test_bgn;
-       uint32_t read_group, read_test_bgn;
-       uint32_t run_groups, current_run;
-       uint32_t failing_groups = 0;
-       uint32_t group_failed = 0;
+       u32 i;
+       u32 rank_bgn, sr;
+       u32 write_group, write_test_bgn;
+       u32 read_group, read_test_bgn;
+       u32 run_groups, current_run;
+       u32 failing_groups = 0;
+       u32 group_failed = 0;
 
-       const u32 rwdqs_ratio = RW_MGR_MEM_IF_READ_DQS_WIDTH /
-                               RW_MGR_MEM_IF_WRITE_DQS_WIDTH;
+       const u32 rwdqs_ratio = seq->rwcfg->mem_if_read_dqs_width /
+                               seq->rwcfg->mem_if_write_dqs_width;
 
        debug("%s:%d\n", __func__, __LINE__);
 
        /* Initialize the data settings */
-       gbl->error_substage = CAL_SUBSTAGE_NIL;
-       gbl->error_stage = CAL_STAGE_NIL;
-       gbl->error_group = 0xff;
-       gbl->fom_in = 0;
-       gbl->fom_out = 0;
+       seq->gbl.error_substage = CAL_SUBSTAGE_NIL;
+       seq->gbl.error_stage = CAL_STAGE_NIL;
+       seq->gbl.error_group = 0xff;
+       seq->gbl.fom_in = 0;
+       seq->gbl.fom_out = 0;
 
        /* Initialize WLAT and RLAT. */
-       mem_init_latency();
+       mem_init_latency(seq);
 
        /* Initialize bit slips. */
-       mem_precharge_and_activate();
+       mem_precharge_and_activate(seq);
 
-       for (i = 0; i < RW_MGR_MEM_IF_READ_DQS_WIDTH; i++) {
+       for (i = 0; i < seq->rwcfg->mem_if_read_dqs_width; i++) {
                writel(i, SDR_PHYGRP_SCCGRP_ADDRESS |
                          SCC_MGR_GROUP_COUNTER_OFFSET);
                /* Only needed once to set all groups, pins, DQ, DQS, DM. */
@@ -3362,12 +3409,12 @@ static uint32_t mem_calibrate(void)
        }
 
        /* Calibration is skipped. */
-       if ((dyn_calib_steps & CALIB_SKIP_ALL) == CALIB_SKIP_ALL) {
+       if ((seq->dyn_calib_steps & CALIB_SKIP_ALL) == CALIB_SKIP_ALL) {
                /*
                 * Set VFIFO and LFIFO to instant-on settings in skip
                 * calibration mode.
                 */
-               mem_skip_calibrate();
+               mem_skip_calibrate(seq);
 
                /*
                 * Do not remove this line as it makes sure all of our
@@ -3383,14 +3430,13 @@ static uint32_t mem_calibrate(void)
                 * Zero all delay chain/phase settings for all
                 * groups and all shadow register sets.
                 */
-               scc_mgr_zero_all();
+               scc_mgr_zero_all(seq);
 
-               run_groups = ~param->skip_groups;
+               run_groups = ~0;
 
                for (write_group = 0, write_test_bgn = 0; write_group
-                       < RW_MGR_MEM_IF_WRITE_DQS_WIDTH; write_group++,
-                       write_test_bgn += RW_MGR_MEM_DQ_PER_WRITE_DQS) {
-
+                       < seq->rwcfg->mem_if_write_dqs_width; write_group++,
+                       write_test_bgn += seq->rwcfg->mem_dq_per_write_dqs) {
                        /* Initialize the group failure */
                        group_failed = 0;
 
@@ -3404,22 +3450,23 @@ static uint32_t mem_calibrate(void)
 
                        writel(write_group, SDR_PHYGRP_SCCGRP_ADDRESS |
                                            SCC_MGR_GROUP_COUNTER_OFFSET);
-                       scc_mgr_zero_group(write_group, 0);
+                       scc_mgr_zero_group(seq, write_group, 0);
 
                        for (read_group = write_group * rwdqs_ratio,
                             read_test_bgn = 0;
                             read_group < (write_group + 1) * rwdqs_ratio;
                             read_group++,
-                            read_test_bgn += RW_MGR_MEM_DQ_PER_READ_DQS) {
+                            read_test_bgn += seq->rwcfg->mem_dq_per_read_dqs) {
                                if (STATIC_CALIB_STEPS & CALIB_SKIP_VFIFO)
                                        continue;
 
                                /* Calibrate the VFIFO */
-                               if (rw_mgr_mem_calibrate_vfifo(read_group,
+                               if (rw_mgr_mem_calibrate_vfifo(seq, read_group,
                                                               read_test_bgn))
                                        continue;
 
-                               if (!(gbl->phy_debug_mode_flags & PHY_DEBUG_SWEEP_ALL_GROUPS))
+                               if (!(seq->gbl.phy_debug_mode_flags &
+                                     PHY_DEBUG_SWEEP_ALL_GROUPS))
                                        return 0;
 
                                /* The group failed, we're done. */
@@ -3428,29 +3475,25 @@ static uint32_t mem_calibrate(void)
 
                        /* Calibrate the output side */
                        for (rank_bgn = 0, sr = 0;
-                            rank_bgn < RW_MGR_MEM_NUMBER_OF_RANKS;
+                            rank_bgn < seq->rwcfg->mem_number_of_ranks;
                             rank_bgn += NUM_RANKS_PER_SHADOW_REG, sr++) {
                                if (STATIC_CALIB_STEPS & CALIB_SKIP_WRITES)
                                        continue;
 
                                /* Not needed in quick mode! */
-                               if (STATIC_CALIB_STEPS & CALIB_SKIP_DELAY_SWEEPS)
-                                       continue;
-
-                               /*
-                                * Determine if this set of ranks
-                                * should be skipped entirely.
-                                */
-                               if (param->skip_shadow_regs[sr])
+                               if (STATIC_CALIB_STEPS &
+                                   CALIB_SKIP_DELAY_SWEEPS)
                                        continue;
 
                                /* Calibrate WRITEs */
-                               if (!rw_mgr_mem_calibrate_writes(rank_bgn,
-                                               write_group, write_test_bgn))
+                               if (!rw_mgr_mem_calibrate_writes(seq, rank_bgn,
+                                                                write_group,
+                                                                write_test_bgn))
                                        continue;
 
                                group_failed = 1;
-                               if (!(gbl->phy_debug_mode_flags & PHY_DEBUG_SWEEP_ALL_GROUPS))
+                               if (!(seq->gbl.phy_debug_mode_flags &
+                                     PHY_DEBUG_SWEEP_ALL_GROUPS))
                                        return 0;
                        }
 
@@ -3462,15 +3505,17 @@ static uint32_t mem_calibrate(void)
                             read_test_bgn = 0;
                             read_group < (write_group + 1) * rwdqs_ratio;
                             read_group++,
-                            read_test_bgn += RW_MGR_MEM_DQ_PER_READ_DQS) {
+                            read_test_bgn += seq->rwcfg->mem_dq_per_read_dqs) {
                                if (STATIC_CALIB_STEPS & CALIB_SKIP_WRITES)
                                        continue;
 
-                               if (!rw_mgr_mem_calibrate_vfifo_end(read_group,
-                                                               read_test_bgn))
+                               if (!rw_mgr_mem_calibrate_vfifo_end(seq,
+                                                                   read_group,
+                                                                   read_test_bgn))
                                        continue;
 
-                               if (!(gbl->phy_debug_mode_flags & PHY_DEBUG_SWEEP_ALL_GROUPS))
+                               if (!(seq->gbl.phy_debug_mode_flags &
+                                     PHY_DEBUG_SWEEP_ALL_GROUPS))
                                        return 0;
 
                                /* The group failed, we're done. */
@@ -3494,15 +3539,8 @@ grp_failed:              /* A group failed, increment the counter. */
                if (STATIC_CALIB_STEPS & CALIB_SKIP_LFIFO)
                        continue;
 
-               /*
-                * If we're skipping groups as part of debug,
-                * don't calibrate LFIFO.
-                */
-               if (param->skip_groups != 0)
-                       continue;
-
                /* Calibrate the LFIFO */
-               if (!rw_mgr_mem_calibrate_lfifo())
+               if (!rw_mgr_mem_calibrate_lfifo(seq))
                        return 0;
        }
 
@@ -3519,9 +3557,10 @@ grp_failed:              /* A group failed, increment the counter. */
  *
  * This function triggers the entire memory calibration procedure.
  */
-static int run_mem_calibrate(void)
+static int run_mem_calibrate(struct socfpga_sdrseq *seq)
 {
        int pass;
+       u32 ctrl_cfg;
 
        debug("%s:%d\n", __func__, __LINE__);
 
@@ -3529,19 +3568,21 @@ static int run_mem_calibrate(void)
        writel(PHY_MGR_CAL_RESET, &phy_mgr_cfg->cal_status);
 
        /* Stop tracking manager. */
-       clrbits_le32(&sdr_ctrl->ctrl_cfg, 1 << 22);
+       ctrl_cfg = readl(&sdr_ctrl->ctrl_cfg);
+       writel(ctrl_cfg & ~SDR_CTRLGRP_CTRLCFG_DQSTRKEN_MASK,
+              &sdr_ctrl->ctrl_cfg);
 
-       phy_mgr_initialize();
-       rw_mgr_mem_initialize();
+       phy_mgr_initialize(seq);
+       rw_mgr_mem_initialize(seq);
 
        /* Perform the actual memory calibration. */
-       pass = mem_calibrate();
+       pass = mem_calibrate(seq);
 
-       mem_precharge_and_activate();
+       mem_precharge_and_activate(seq);
        writel(0, &phy_mgr_cmd->fifo_reset);
 
        /* Handoff. */
-       rw_mgr_mem_handoff();
+       rw_mgr_mem_handoff(seq);
        /*
         * In Hard PHY this is a 2-bit control:
         * 0: AFI Mux Select
@@ -3550,7 +3591,7 @@ static int run_mem_calibrate(void)
        writel(0x2, &phy_mgr_cfg->mux_sel);
 
        /* Start tracking manager. */
-       setbits_le32(&sdr_ctrl->ctrl_cfg, 1 << 22);
+       writel(ctrl_cfg, &sdr_ctrl->ctrl_cfg);
 
        return pass;
 }
@@ -3562,48 +3603,48 @@ static int run_mem_calibrate(void)
  * This function reports the results of the memory calibration
  * and writes debug information into the register file.
  */
-static void debug_mem_calibrate(int pass)
+static void debug_mem_calibrate(struct socfpga_sdrseq *seq, int pass)
 {
-       uint32_t debug_info;
+       u32 debug_info;
 
        if (pass) {
-               printf("%s: CALIBRATION PASSED\n", __FILE__);
+               debug("%s: CALIBRATION PASSED\n", __FILE__);
 
-               gbl->fom_in /= 2;
-               gbl->fom_out /= 2;
+               seq->gbl.fom_in /= 2;
+               seq->gbl.fom_out /= 2;
 
-               if (gbl->fom_in > 0xff)
-                       gbl->fom_in = 0xff;
+               if (seq->gbl.fom_in > 0xff)
+                       seq->gbl.fom_in = 0xff;
 
-               if (gbl->fom_out > 0xff)
-                       gbl->fom_out = 0xff;
+               if (seq->gbl.fom_out > 0xff)
+                       seq->gbl.fom_out = 0xff;
 
                /* Update the FOM in the register file */
-               debug_info = gbl->fom_in;
-               debug_info |= gbl->fom_out << 8;
+               debug_info = seq->gbl.fom_in;
+               debug_info |= seq->gbl.fom_out << 8;
                writel(debug_info, &sdr_reg_file->fom);
 
                writel(debug_info, &phy_mgr_cfg->cal_debug_info);
                writel(PHY_MGR_CAL_SUCCESS, &phy_mgr_cfg->cal_status);
        } else {
-               printf("%s: CALIBRATION FAILED\n", __FILE__);
+               debug("%s: CALIBRATION FAILED\n", __FILE__);
 
-               debug_info = gbl->error_stage;
-               debug_info |= gbl->error_substage << 8;
-               debug_info |= gbl->error_group << 16;
+               debug_info = seq->gbl.error_stage;
+               debug_info |= seq->gbl.error_substage << 8;
+               debug_info |= seq->gbl.error_group << 16;
 
                writel(debug_info, &sdr_reg_file->failing_stage);
                writel(debug_info, &phy_mgr_cfg->cal_debug_info);
                writel(PHY_MGR_CAL_FAIL, &phy_mgr_cfg->cal_status);
 
                /* Update the failing group/stage in the register file */
-               debug_info = gbl->error_stage;
-               debug_info |= gbl->error_substage << 8;
-               debug_info |= gbl->error_group << 16;
+               debug_info = seq->gbl.error_stage;
+               debug_info |= seq->gbl.error_substage << 8;
+               debug_info |= seq->gbl.error_group << 16;
                writel(debug_info, &sdr_reg_file->failing_stage);
        }
 
-       printf("%s: Calibration complete\n", __FILE__);
+       debug("%s: Calibration complete\n", __FILE__);
 }
 
 /**
@@ -3613,15 +3654,19 @@ static void debug_mem_calibrate(int pass)
  */
 static void hc_initialize_rom_data(void)
 {
+       unsigned int nelem = 0;
+       const u32 *rom_init;
        u32 i, addr;
 
+       socfpga_get_seq_inst_init(&rom_init, &nelem);
        addr = SDR_PHYGRP_RWMGRGRP_ADDRESS | RW_MGR_INST_ROM_WRITE_OFFSET;
-       for (i = 0; i < ARRAY_SIZE(inst_rom_init); i++)
-               writel(inst_rom_init[i], addr + (i << 2));
+       for (i = 0; i < nelem; i++)
+               writel(rom_init[i], addr + (i << 2));
 
+       socfpga_get_seq_ac_init(&rom_init, &nelem);
        addr = SDR_PHYGRP_RWMGRGRP_ADDRESS | RW_MGR_AC_ROM_WRITE_OFFSET;
-       for (i = 0; i < ARRAY_SIZE(ac_rom_init); i++)
-               writel(ac_rom_init[i], addr + (i << 2));
+       for (i = 0; i < nelem; i++)
+               writel(rom_init[i], addr + (i << 2));
 }
 
 /**
@@ -3629,10 +3674,11 @@ static void hc_initialize_rom_data(void)
  *
  * Initialize SDR register file.
  */
-static void initialize_reg_file(void)
+static void initialize_reg_file(struct socfpga_sdrseq *seq)
 {
        /* Initialize the register file with the correct data */
-       writel(REG_FILE_INIT_SEQ_SIGNATURE, &sdr_reg_file->signature);
+       writel(seq->misccfg->reg_file_init_seq_signature,
+              &sdr_reg_file->signature);
        writel(0, &sdr_reg_file->debug_data_addr);
        writel(0, &sdr_reg_file->cur_stage);
        writel(0, &sdr_reg_file->fom);
@@ -3648,13 +3694,13 @@ static void initialize_reg_file(void)
  */
 static void initialize_hps_phy(void)
 {
-       uint32_t reg;
+       u32 reg;
        /*
         * Tracking also gets configured here because it's in the
         * same register.
         */
-       uint32_t trk_sample_count = 7500;
-       uint32_t trk_long_idle_sample_count = (10 << 16) | 100;
+       u32 trk_sample_count = 7500;
+       u32 trk_long_idle_sample_count = (10 << 16) | 100;
        /*
         * Format is number of outer loops in the 16 MSB, sample
         * count in 16 LSB.
@@ -3696,14 +3742,15 @@ static void initialize_hps_phy(void)
  *
  * Initialize the register file with usable initial data.
  */
-static void initialize_tracking(void)
+static void initialize_tracking(struct socfpga_sdrseq *seq)
 {
        /*
         * Initialize the register file with the correct data.
         * Compute usable version of value in case we skip full
         * computation later.
         */
-       writel(DIV_ROUND_UP(IO_DELAY_PER_OPA_TAP, IO_DELAY_PER_DCHAIN_TAP) - 1,
+       writel(DIV_ROUND_UP(seq->iocfg->delay_per_opa_tap,
+                           seq->iocfg->delay_per_dchain_tap) - 1,
               &sdr_reg_file->dtaps_per_ptap);
 
        /* trk_sample_count */
@@ -3722,73 +3769,85 @@ static void initialize_tracking(void)
               &sdr_reg_file->delays);
 
        /* mux delay */
-       writel((RW_MGR_IDLE << 24) | (RW_MGR_ACTIVATE_1 << 16) |
-              (RW_MGR_SGLE_READ << 8) | (RW_MGR_PRECHARGE_ALL << 0),
+       writel((seq->rwcfg->idle << 24) | (seq->rwcfg->activate_1 << 16) |
+              (seq->rwcfg->sgle_read << 8) | (seq->rwcfg->precharge_all << 0),
               &sdr_reg_file->trk_rw_mgr_addr);
 
-       writel(RW_MGR_MEM_IF_READ_DQS_WIDTH,
+       writel(seq->rwcfg->mem_if_read_dqs_width,
               &sdr_reg_file->trk_read_dqs_width);
 
        /* trefi [7:0] */
-       writel((RW_MGR_REFRESH_ALL << 24) | (1000 << 0),
+       writel((seq->rwcfg->refresh_all << 24) | (1000 << 0),
               &sdr_reg_file->trk_rfsh);
 }
 
-int sdram_calibration_full(void)
+int sdram_calibration_full(struct socfpga_sdr *sdr)
 {
-       struct param_type my_param;
-       struct gbl_type my_gbl;
-       uint32_t pass;
+       u32 pass;
+       struct socfpga_sdrseq seq;
+
+       /*
+        * For size reasons, this file uses hard coded addresses.
+        * Check if we are called with the correct address.
+        */
+       if (sdr != (struct socfpga_sdr *)SOCFPGA_SDR_ADDRESS)
+               return -ENODEV;
 
-       memset(&my_param, 0, sizeof(my_param));
-       memset(&my_gbl, 0, sizeof(my_gbl));
+       memset(&seq, 0, sizeof(seq));
 
-       param = &my_param;
-       gbl = &my_gbl;
+       seq.rwcfg = socfpga_get_sdram_rwmgr_config();
+       seq.iocfg = socfpga_get_sdram_io_config();
+       seq.misccfg = socfpga_get_sdram_misc_config();
 
        /* Set the calibration enabled by default */
-       gbl->phy_debug_mode_flags |= PHY_DEBUG_ENABLE_CAL_RPT;
+       seq.gbl.phy_debug_mode_flags |= PHY_DEBUG_ENABLE_CAL_RPT;
        /*
         * Only sweep all groups (regardless of fail state) by default
         * Set enabled read test by default.
         */
 #if DISABLE_GUARANTEED_READ
-       gbl->phy_debug_mode_flags |= PHY_DEBUG_DISABLE_GUARANTEED_READ;
+       seq.gbl.phy_debug_mode_flags |= PHY_DEBUG_DISABLE_GUARANTEED_READ;
 #endif
        /* Initialize the register file */
-       initialize_reg_file();
+       initialize_reg_file(&seq);
 
        /* Initialize any PHY CSR */
        initialize_hps_phy();
 
        scc_mgr_initialize();
 
-       initialize_tracking();
+       initialize_tracking(&seq);
 
-       printf("%s: Preparing to start memory calibration\n", __FILE__);
+       debug("%s: Preparing to start memory calibration\n", __FILE__);
 
        debug("%s:%d\n", __func__, __LINE__);
-       debug_cond(DLEVEL == 1,
+       debug_cond(DLEVEL >= 1,
                   "DDR3 FULL_RATE ranks=%u cs/dimm=%u dq/dqs=%u,%u vg/dqs=%u,%u ",
-                  RW_MGR_MEM_NUMBER_OF_RANKS, RW_MGR_MEM_NUMBER_OF_CS_PER_DIMM,
-                  RW_MGR_MEM_DQ_PER_READ_DQS, RW_MGR_MEM_DQ_PER_WRITE_DQS,
-                  RW_MGR_MEM_VIRTUAL_GROUPS_PER_READ_DQS,
-                  RW_MGR_MEM_VIRTUAL_GROUPS_PER_WRITE_DQS);
-       debug_cond(DLEVEL == 1,
+                  seq.rwcfg->mem_number_of_ranks,
+                  seq.rwcfg->mem_number_of_cs_per_dimm,
+                  seq.rwcfg->mem_dq_per_read_dqs,
+                  seq.rwcfg->mem_dq_per_write_dqs,
+                  seq.rwcfg->mem_virtual_groups_per_read_dqs,
+                  seq.rwcfg->mem_virtual_groups_per_write_dqs);
+       debug_cond(DLEVEL >= 1,
                   "dqs=%u,%u dq=%u dm=%u ptap_delay=%u dtap_delay=%u ",
-                  RW_MGR_MEM_IF_READ_DQS_WIDTH, RW_MGR_MEM_IF_WRITE_DQS_WIDTH,
-                  RW_MGR_MEM_DATA_WIDTH, RW_MGR_MEM_DATA_MASK_WIDTH,
-                  IO_DELAY_PER_OPA_TAP, IO_DELAY_PER_DCHAIN_TAP);
-       debug_cond(DLEVEL == 1, "dtap_dqsen_delay=%u, dll=%u",
-                  IO_DELAY_PER_DQS_EN_DCHAIN_TAP, IO_DLL_CHAIN_LENGTH);
-       debug_cond(DLEVEL == 1, "max values: en_p=%u dqdqs_p=%u en_d=%u dqs_in_d=%u ",
-                  IO_DQS_EN_PHASE_MAX, IO_DQDQS_OUT_PHASE_MAX,
-                  IO_DQS_EN_DELAY_MAX, IO_DQS_IN_DELAY_MAX);
-       debug_cond(DLEVEL == 1, "io_in_d=%u io_out1_d=%u io_out2_d=%u ",
-                  IO_IO_IN_DELAY_MAX, IO_IO_OUT1_DELAY_MAX,
-                  IO_IO_OUT2_DELAY_MAX);
-       debug_cond(DLEVEL == 1, "dqs_in_reserve=%u dqs_out_reserve=%u\n",
-                  IO_DQS_IN_RESERVE, IO_DQS_OUT_RESERVE);
+                  seq.rwcfg->mem_if_read_dqs_width,
+                  seq.rwcfg->mem_if_write_dqs_width,
+                  seq.rwcfg->mem_data_width, seq.rwcfg->mem_data_mask_width,
+                  seq.iocfg->delay_per_opa_tap,
+                  seq.iocfg->delay_per_dchain_tap);
+       debug_cond(DLEVEL >= 1, "dtap_dqsen_delay=%u, dll=%u",
+                  seq.iocfg->delay_per_dqs_en_dchain_tap,
+                  seq.iocfg->dll_chain_length);
+       debug_cond(DLEVEL >= 1,
+                  "max values: en_p=%u dqdqs_p=%u en_d=%u dqs_in_d=%u ",
+                  seq.iocfg->dqs_en_phase_max, seq.iocfg->dqdqs_out_phase_max,
+                  seq.iocfg->dqs_en_delay_max, seq.iocfg->dqs_in_delay_max);
+       debug_cond(DLEVEL >= 1, "io_in_d=%u io_out1_d=%u io_out2_d=%u ",
+                  seq.iocfg->io_in_delay_max, seq.iocfg->io_out1_delay_max,
+                  seq.iocfg->io_out2_delay_max);
+       debug_cond(DLEVEL >= 1, "dqs_in_reserve=%u dqs_out_reserve=%u\n",
+                  seq.iocfg->dqs_in_reserve, seq.iocfg->dqs_out_reserve);
 
        hc_initialize_rom_data();
 
@@ -3800,17 +3859,17 @@ int sdram_calibration_full(void)
         * Load global needed for those actions that require
         * some dynamic calibration support.
         */
-       dyn_calib_steps = STATIC_CALIB_STEPS;
+       seq.dyn_calib_steps = STATIC_CALIB_STEPS;
        /*
         * Load global to allow dynamic selection of delay loop settings
         * based on calibration mode.
         */
-       if (!(dyn_calib_steps & CALIB_SKIP_DELAY_LOOPS))
-               skip_delay_mask = 0xff;
+       if (!(seq.dyn_calib_steps & CALIB_SKIP_DELAY_LOOPS))
+               seq.skip_delay_mask = 0xff;
        else
-               skip_delay_mask = 0x0;
+               seq.skip_delay_mask = 0x0;
 
-       pass = run_mem_calibrate();
-       debug_mem_calibrate(pass);
+       pass = run_mem_calibrate(&seq);
+       debug_mem_calibrate(&seq, pass);
        return pass;
 }