Commit f061de42 authored by Hariprasad Shenai's avatar Hariprasad Shenai Committed by David S. Miller

cxgb4/cxgb4vf/csiostor: Cleanup SGE and PCI related register defines

This patch cleansup remaining SGE related macros/register defines and all PCI
related ones that are defined in t4_regs.h and the affected files.
Signed-off-by: default avatarHariprasad Shenai <hariprasad@chelsio.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent f612b815
...@@ -1590,9 +1590,9 @@ static void get_stats(struct net_device *dev, struct ethtool_stats *stats, ...@@ -1590,9 +1590,9 @@ static void get_stats(struct net_device *dev, struct ethtool_stats *stats,
collect_sge_port_stats(adapter, pi, (struct queue_port_stats *)data); collect_sge_port_stats(adapter, pi, (struct queue_port_stats *)data);
data += sizeof(struct queue_port_stats) / sizeof(u64); data += sizeof(struct queue_port_stats) / sizeof(u64);
if (!is_t4(adapter->params.chip)) { if (!is_t4(adapter->params.chip)) {
t4_write_reg(adapter, SGE_STAT_CFG, STATSOURCE_T5(7)); t4_write_reg(adapter, SGE_STAT_CFG_A, STATSOURCE_T5_V(7));
val1 = t4_read_reg(adapter, SGE_STAT_TOTAL); val1 = t4_read_reg(adapter, SGE_STAT_TOTAL_A);
val2 = t4_read_reg(adapter, SGE_STAT_MATCH); val2 = t4_read_reg(adapter, SGE_STAT_MATCH_A);
*data = val1 - val2; *data = val1 - val2;
data++; data++;
*data = val2; *data = val2;
...@@ -3601,14 +3601,14 @@ unsigned int cxgb4_dbfifo_count(const struct net_device *dev, int lpfifo) ...@@ -3601,14 +3601,14 @@ unsigned int cxgb4_dbfifo_count(const struct net_device *dev, int lpfifo)
struct adapter *adap = netdev2adap(dev); struct adapter *adap = netdev2adap(dev);
u32 v1, v2, lp_count, hp_count; u32 v1, v2, lp_count, hp_count;
v1 = t4_read_reg(adap, A_SGE_DBFIFO_STATUS); v1 = t4_read_reg(adap, SGE_DBFIFO_STATUS_A);
v2 = t4_read_reg(adap, SGE_DBFIFO_STATUS2); v2 = t4_read_reg(adap, SGE_DBFIFO_STATUS2_A);
if (is_t4(adap->params.chip)) { if (is_t4(adap->params.chip)) {
lp_count = G_LP_COUNT(v1); lp_count = LP_COUNT_G(v1);
hp_count = G_HP_COUNT(v1); hp_count = HP_COUNT_G(v1);
} else { } else {
lp_count = G_LP_COUNT_T5(v1); lp_count = LP_COUNT_T5_G(v1);
hp_count = G_HP_COUNT_T5(v2); hp_count = HP_COUNT_T5_G(v2);
} }
return lpfifo ? lp_count : hp_count; return lpfifo ? lp_count : hp_count;
} }
...@@ -3667,14 +3667,14 @@ int cxgb4_flush_eq_cache(struct net_device *dev) ...@@ -3667,14 +3667,14 @@ int cxgb4_flush_eq_cache(struct net_device *dev)
int ret; int ret;
ret = t4_fwaddrspace_write(adap, adap->mbox, ret = t4_fwaddrspace_write(adap, adap->mbox,
0xe1000000 + A_SGE_CTXT_CMD, 0x20000000); 0xe1000000 + SGE_CTXT_CMD_A, 0x20000000);
return ret; return ret;
} }
EXPORT_SYMBOL(cxgb4_flush_eq_cache); EXPORT_SYMBOL(cxgb4_flush_eq_cache);
static int read_eq_indices(struct adapter *adap, u16 qid, u16 *pidx, u16 *cidx) static int read_eq_indices(struct adapter *adap, u16 qid, u16 *pidx, u16 *cidx)
{ {
u32 addr = t4_read_reg(adap, A_SGE_DBQ_CTXT_BADDR) + 24 * qid + 8; u32 addr = t4_read_reg(adap, SGE_DBQ_CTXT_BADDR_A) + 24 * qid + 8;
__be64 indices; __be64 indices;
int ret; int ret;
...@@ -3728,7 +3728,7 @@ void cxgb4_disable_db_coalescing(struct net_device *dev) ...@@ -3728,7 +3728,7 @@ void cxgb4_disable_db_coalescing(struct net_device *dev)
struct adapter *adap; struct adapter *adap;
adap = netdev2adap(dev); adap = netdev2adap(dev);
t4_set_reg_field(adap, A_SGE_DOORBELL_CONTROL, NOCOALESCE_F, t4_set_reg_field(adap, SGE_DOORBELL_CONTROL_A, NOCOALESCE_F,
NOCOALESCE_F); NOCOALESCE_F);
} }
EXPORT_SYMBOL(cxgb4_disable_db_coalescing); EXPORT_SYMBOL(cxgb4_disable_db_coalescing);
...@@ -3738,7 +3738,7 @@ void cxgb4_enable_db_coalescing(struct net_device *dev) ...@@ -3738,7 +3738,7 @@ void cxgb4_enable_db_coalescing(struct net_device *dev)
struct adapter *adap; struct adapter *adap;
adap = netdev2adap(dev); adap = netdev2adap(dev);
t4_set_reg_field(adap, A_SGE_DOORBELL_CONTROL, NOCOALESCE_F, 0); t4_set_reg_field(adap, SGE_DOORBELL_CONTROL_A, NOCOALESCE_F, 0);
} }
EXPORT_SYMBOL(cxgb4_enable_db_coalescing); EXPORT_SYMBOL(cxgb4_enable_db_coalescing);
...@@ -3877,14 +3877,14 @@ static void drain_db_fifo(struct adapter *adap, int usecs) ...@@ -3877,14 +3877,14 @@ static void drain_db_fifo(struct adapter *adap, int usecs)
u32 v1, v2, lp_count, hp_count; u32 v1, v2, lp_count, hp_count;
do { do {
v1 = t4_read_reg(adap, A_SGE_DBFIFO_STATUS); v1 = t4_read_reg(adap, SGE_DBFIFO_STATUS_A);
v2 = t4_read_reg(adap, SGE_DBFIFO_STATUS2); v2 = t4_read_reg(adap, SGE_DBFIFO_STATUS2_A);
if (is_t4(adap->params.chip)) { if (is_t4(adap->params.chip)) {
lp_count = G_LP_COUNT(v1); lp_count = LP_COUNT_G(v1);
hp_count = G_HP_COUNT(v1); hp_count = HP_COUNT_G(v1);
} else { } else {
lp_count = G_LP_COUNT_T5(v1); lp_count = LP_COUNT_T5_G(v1);
hp_count = G_HP_COUNT_T5(v2); hp_count = HP_COUNT_T5_G(v2);
} }
if (lp_count == 0 && hp_count == 0) if (lp_count == 0 && hp_count == 0)
...@@ -4044,7 +4044,7 @@ static void process_db_drop(struct work_struct *work) ...@@ -4044,7 +4044,7 @@ static void process_db_drop(struct work_struct *work)
t4_set_reg_field(adap, 0x10b0, 1<<15, 1<<15); t4_set_reg_field(adap, 0x10b0, 1<<15, 1<<15);
} }
t4_set_reg_field(adap, A_SGE_DOORBELL_CONTROL, F_DROPPED_DB, 0); t4_set_reg_field(adap, SGE_DOORBELL_CONTROL_A, DROPPED_DB_F, 0);
} }
void t4_db_full(struct adapter *adap) void t4_db_full(struct adapter *adap)
...@@ -4871,16 +4871,16 @@ static void setup_memwin(struct adapter *adap) ...@@ -4871,16 +4871,16 @@ static void setup_memwin(struct adapter *adap)
mem_win2_base = MEMWIN2_BASE_T5; mem_win2_base = MEMWIN2_BASE_T5;
mem_win2_aperture = MEMWIN2_APERTURE_T5; mem_win2_aperture = MEMWIN2_APERTURE_T5;
} }
t4_write_reg(adap, PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_BASE_WIN, 0), t4_write_reg(adap, PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_BASE_WIN_A, 0),
mem_win0_base | BIR(0) | mem_win0_base | BIR_V(0) |
WINDOW(ilog2(MEMWIN0_APERTURE) - 10)); WINDOW_V(ilog2(MEMWIN0_APERTURE) - 10));
t4_write_reg(adap, PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_BASE_WIN, 1), t4_write_reg(adap, PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_BASE_WIN_A, 1),
mem_win1_base | BIR(0) | mem_win1_base | BIR_V(0) |
WINDOW(ilog2(MEMWIN1_APERTURE) - 10)); WINDOW_V(ilog2(MEMWIN1_APERTURE) - 10));
t4_write_reg(adap, PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_BASE_WIN, 2), t4_write_reg(adap, PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_BASE_WIN_A, 2),
mem_win2_base | BIR(0) | mem_win2_base | BIR_V(0) |
WINDOW(ilog2(mem_win2_aperture) - 10)); WINDOW_V(ilog2(mem_win2_aperture) - 10));
t4_read_reg(adap, PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_BASE_WIN, 2)); t4_read_reg(adap, PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_BASE_WIN_A, 2));
} }
static void setup_memwin_rdma(struct adapter *adap) static void setup_memwin_rdma(struct adapter *adap)
...@@ -4894,13 +4894,13 @@ static void setup_memwin_rdma(struct adapter *adap) ...@@ -4894,13 +4894,13 @@ static void setup_memwin_rdma(struct adapter *adap)
start += OCQ_WIN_OFFSET(adap->pdev, &adap->vres); start += OCQ_WIN_OFFSET(adap->pdev, &adap->vres);
sz_kb = roundup_pow_of_two(adap->vres.ocq.size) >> 10; sz_kb = roundup_pow_of_two(adap->vres.ocq.size) >> 10;
t4_write_reg(adap, t4_write_reg(adap,
PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_BASE_WIN, 3), PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_BASE_WIN_A, 3),
start | BIR(1) | WINDOW(ilog2(sz_kb))); start | BIR_V(1) | WINDOW_V(ilog2(sz_kb)));
t4_write_reg(adap, t4_write_reg(adap,
PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_OFFSET, 3), PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_OFFSET_A, 3),
adap->vres.ocq.start); adap->vres.ocq.start);
t4_read_reg(adap, t4_read_reg(adap,
PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_OFFSET, 3)); PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_OFFSET_A, 3));
} }
} }
......
...@@ -2098,7 +2098,7 @@ static irqreturn_t t4_intr_intx(int irq, void *cookie) ...@@ -2098,7 +2098,7 @@ static irqreturn_t t4_intr_intx(int irq, void *cookie)
{ {
struct adapter *adap = cookie; struct adapter *adap = cookie;
t4_write_reg(adap, MYPF_REG(PCIE_PF_CLI), 0); t4_write_reg(adap, MYPF_REG(PCIE_PF_CLI_A), 0);
if (t4_slow_intr_handler(adap) | process_intrq(adap)) if (t4_slow_intr_handler(adap) | process_intrq(adap))
return IRQ_HANDLED; return IRQ_HANDLED;
return IRQ_NONE; /* probably shared interrupt */ return IRQ_NONE; /* probably shared interrupt */
...@@ -2145,9 +2145,9 @@ static void sge_rx_timer_cb(unsigned long data) ...@@ -2145,9 +2145,9 @@ static void sge_rx_timer_cb(unsigned long data)
} }
} }
t4_write_reg(adap, SGE_DEBUG_INDEX, 13); t4_write_reg(adap, SGE_DEBUG_INDEX_A, 13);
idma_same_state_cnt[0] = t4_read_reg(adap, SGE_DEBUG_DATA_HIGH); idma_same_state_cnt[0] = t4_read_reg(adap, SGE_DEBUG_DATA_HIGH_A);
idma_same_state_cnt[1] = t4_read_reg(adap, SGE_DEBUG_DATA_LOW); idma_same_state_cnt[1] = t4_read_reg(adap, SGE_DEBUG_DATA_LOW_A);
for (i = 0; i < 2; i++) { for (i = 0; i < 2; i++) {
u32 debug0, debug11; u32 debug0, debug11;
...@@ -2191,12 +2191,12 @@ static void sge_rx_timer_cb(unsigned long data) ...@@ -2191,12 +2191,12 @@ static void sge_rx_timer_cb(unsigned long data)
/* Read and save the SGE IDMA State and Queue ID information. /* Read and save the SGE IDMA State and Queue ID information.
* We do this every time in case it changes across time ... * We do this every time in case it changes across time ...
*/ */
t4_write_reg(adap, SGE_DEBUG_INDEX, 0); t4_write_reg(adap, SGE_DEBUG_INDEX_A, 0);
debug0 = t4_read_reg(adap, SGE_DEBUG_DATA_LOW); debug0 = t4_read_reg(adap, SGE_DEBUG_DATA_LOW_A);
s->idma_state[i] = (debug0 >> (i * 9)) & 0x3f; s->idma_state[i] = (debug0 >> (i * 9)) & 0x3f;
t4_write_reg(adap, SGE_DEBUG_INDEX, 11); t4_write_reg(adap, SGE_DEBUG_INDEX_A, 11);
debug11 = t4_read_reg(adap, SGE_DEBUG_DATA_LOW); debug11 = t4_read_reg(adap, SGE_DEBUG_DATA_LOW_A);
s->idma_qid[i] = (debug11 >> (i * 16)) & 0xffff; s->idma_qid[i] = (debug11 >> (i * 16)) & 0xffff;
CH_WARN(adap, "SGE idma%u, queue%u, maybe stuck state%u %dsecs (debug0=%#x, debug11=%#x)\n", CH_WARN(adap, "SGE idma%u, queue%u, maybe stuck state%u %dsecs (debug0=%#x, debug11=%#x)\n",
...@@ -2826,21 +2826,21 @@ static int t4_sge_init_soft(struct adapter *adap) ...@@ -2826,21 +2826,21 @@ static int t4_sge_init_soft(struct adapter *adap)
* Retrieve our RX interrupt holdoff timer values and counter * Retrieve our RX interrupt holdoff timer values and counter
* threshold values from the SGE parameters. * threshold values from the SGE parameters.
*/ */
timer_value_0_and_1 = t4_read_reg(adap, SGE_TIMER_VALUE_0_AND_1); timer_value_0_and_1 = t4_read_reg(adap, SGE_TIMER_VALUE_0_AND_1_A);
timer_value_2_and_3 = t4_read_reg(adap, SGE_TIMER_VALUE_2_AND_3); timer_value_2_and_3 = t4_read_reg(adap, SGE_TIMER_VALUE_2_AND_3_A);
timer_value_4_and_5 = t4_read_reg(adap, SGE_TIMER_VALUE_4_AND_5); timer_value_4_and_5 = t4_read_reg(adap, SGE_TIMER_VALUE_4_AND_5_A);
s->timer_val[0] = core_ticks_to_us(adap, s->timer_val[0] = core_ticks_to_us(adap,
TIMERVALUE0_GET(timer_value_0_and_1)); TIMERVALUE0_G(timer_value_0_and_1));
s->timer_val[1] = core_ticks_to_us(adap, s->timer_val[1] = core_ticks_to_us(adap,
TIMERVALUE1_GET(timer_value_0_and_1)); TIMERVALUE1_G(timer_value_0_and_1));
s->timer_val[2] = core_ticks_to_us(adap, s->timer_val[2] = core_ticks_to_us(adap,
TIMERVALUE2_GET(timer_value_2_and_3)); TIMERVALUE2_G(timer_value_2_and_3));
s->timer_val[3] = core_ticks_to_us(adap, s->timer_val[3] = core_ticks_to_us(adap,
TIMERVALUE3_GET(timer_value_2_and_3)); TIMERVALUE3_G(timer_value_2_and_3));
s->timer_val[4] = core_ticks_to_us(adap, s->timer_val[4] = core_ticks_to_us(adap,
TIMERVALUE4_GET(timer_value_4_and_5)); TIMERVALUE4_G(timer_value_4_and_5));
s->timer_val[5] = core_ticks_to_us(adap, s->timer_val[5] = core_ticks_to_us(adap,
TIMERVALUE5_GET(timer_value_4_and_5)); TIMERVALUE5_G(timer_value_4_and_5));
ingress_rx_threshold = t4_read_reg(adap, SGE_INGRESS_RX_THRESHOLD_A); ingress_rx_threshold = t4_read_reg(adap, SGE_INGRESS_RX_THRESHOLD_A);
s->counter_val[0] = THRESHOLD_0_G(ingress_rx_threshold); s->counter_val[0] = THRESHOLD_0_G(ingress_rx_threshold);
...@@ -2866,21 +2866,21 @@ static int t4_sge_init_hard(struct adapter *adap) ...@@ -2866,21 +2866,21 @@ static int t4_sge_init_hard(struct adapter *adap)
* and generate an interrupt when this occurs so we can recover. * and generate an interrupt when this occurs so we can recover.
*/ */
if (is_t4(adap->params.chip)) { if (is_t4(adap->params.chip)) {
t4_set_reg_field(adap, A_SGE_DBFIFO_STATUS, t4_set_reg_field(adap, SGE_DBFIFO_STATUS_A,
V_HP_INT_THRESH(M_HP_INT_THRESH) | HP_INT_THRESH_V(HP_INT_THRESH_M) |
V_LP_INT_THRESH(M_LP_INT_THRESH), LP_INT_THRESH_V(LP_INT_THRESH_M),
V_HP_INT_THRESH(dbfifo_int_thresh) | HP_INT_THRESH_V(dbfifo_int_thresh) |
V_LP_INT_THRESH(dbfifo_int_thresh)); LP_INT_THRESH_V(dbfifo_int_thresh));
} else { } else {
t4_set_reg_field(adap, A_SGE_DBFIFO_STATUS, t4_set_reg_field(adap, SGE_DBFIFO_STATUS_A,
V_LP_INT_THRESH_T5(M_LP_INT_THRESH_T5), LP_INT_THRESH_T5_V(LP_INT_THRESH_T5_M),
V_LP_INT_THRESH_T5(dbfifo_int_thresh)); LP_INT_THRESH_T5_V(dbfifo_int_thresh));
t4_set_reg_field(adap, SGE_DBFIFO_STATUS2, t4_set_reg_field(adap, SGE_DBFIFO_STATUS2_A,
V_HP_INT_THRESH_T5(M_HP_INT_THRESH_T5), HP_INT_THRESH_T5_V(HP_INT_THRESH_T5_M),
V_HP_INT_THRESH_T5(dbfifo_int_thresh)); HP_INT_THRESH_T5_V(dbfifo_int_thresh));
} }
t4_set_reg_field(adap, A_SGE_DOORBELL_CONTROL, F_ENABLE_DROP, t4_set_reg_field(adap, SGE_DOORBELL_CONTROL_A, ENABLE_DROP_F,
F_ENABLE_DROP); ENABLE_DROP_F);
/* /*
* SGE_FL_BUFFER_SIZE0 (RX_SMALL_PG_BUF) is set up by * SGE_FL_BUFFER_SIZE0 (RX_SMALL_PG_BUF) is set up by
...@@ -2905,15 +2905,15 @@ static int t4_sge_init_hard(struct adapter *adap) ...@@ -2905,15 +2905,15 @@ static int t4_sge_init_hard(struct adapter *adap)
THRESHOLD_1_V(s->counter_val[1]) | THRESHOLD_1_V(s->counter_val[1]) |
THRESHOLD_2_V(s->counter_val[2]) | THRESHOLD_2_V(s->counter_val[2]) |
THRESHOLD_3_V(s->counter_val[3])); THRESHOLD_3_V(s->counter_val[3]));
t4_write_reg(adap, SGE_TIMER_VALUE_0_AND_1, t4_write_reg(adap, SGE_TIMER_VALUE_0_AND_1_A,
TIMERVALUE0(us_to_core_ticks(adap, s->timer_val[0])) | TIMERVALUE0_V(us_to_core_ticks(adap, s->timer_val[0])) |
TIMERVALUE1(us_to_core_ticks(adap, s->timer_val[1]))); TIMERVALUE1_V(us_to_core_ticks(adap, s->timer_val[1])));
t4_write_reg(adap, SGE_TIMER_VALUE_2_AND_3, t4_write_reg(adap, SGE_TIMER_VALUE_2_AND_3_A,
TIMERVALUE2(us_to_core_ticks(adap, s->timer_val[2])) | TIMERVALUE2_V(us_to_core_ticks(adap, s->timer_val[2])) |
TIMERVALUE3(us_to_core_ticks(adap, s->timer_val[3]))); TIMERVALUE3_V(us_to_core_ticks(adap, s->timer_val[3])));
t4_write_reg(adap, SGE_TIMER_VALUE_4_AND_5, t4_write_reg(adap, SGE_TIMER_VALUE_4_AND_5_A,
TIMERVALUE4(us_to_core_ticks(adap, s->timer_val[4])) | TIMERVALUE4_V(us_to_core_ticks(adap, s->timer_val[4])) |
TIMERVALUE5(us_to_core_ticks(adap, s->timer_val[5]))); TIMERVALUE5_V(us_to_core_ticks(adap, s->timer_val[5])));
return 0; return 0;
} }
......
This diff is collapsed.
...@@ -78,4 +78,8 @@ ...@@ -78,4 +78,8 @@
#define SGE_UDB_GTS 20 #define SGE_UDB_GTS 20
#define SGE_UDB_WCDOORBELL 64 #define SGE_UDB_WCDOORBELL 64
/* PCI-E definitions */
#define WINDOW_SHIFT_X 10
#define PCIEOFST_SHIFT_X 10
#endif /* __T4_VALUES_H__ */ #endif /* __T4_VALUES_H__ */
...@@ -2294,17 +2294,17 @@ static int adap_init0(struct adapter *adapter) ...@@ -2294,17 +2294,17 @@ static int adap_init0(struct adapter *adapter)
* threshold values from the SGE parameters. * threshold values from the SGE parameters.
*/ */
s->timer_val[0] = core_ticks_to_us(adapter, s->timer_val[0] = core_ticks_to_us(adapter,
TIMERVALUE0_GET(sge_params->sge_timer_value_0_and_1)); TIMERVALUE0_G(sge_params->sge_timer_value_0_and_1));
s->timer_val[1] = core_ticks_to_us(adapter, s->timer_val[1] = core_ticks_to_us(adapter,
TIMERVALUE1_GET(sge_params->sge_timer_value_0_and_1)); TIMERVALUE1_G(sge_params->sge_timer_value_0_and_1));
s->timer_val[2] = core_ticks_to_us(adapter, s->timer_val[2] = core_ticks_to_us(adapter,
TIMERVALUE0_GET(sge_params->sge_timer_value_2_and_3)); TIMERVALUE0_G(sge_params->sge_timer_value_2_and_3));
s->timer_val[3] = core_ticks_to_us(adapter, s->timer_val[3] = core_ticks_to_us(adapter,
TIMERVALUE1_GET(sge_params->sge_timer_value_2_and_3)); TIMERVALUE1_G(sge_params->sge_timer_value_2_and_3));
s->timer_val[4] = core_ticks_to_us(adapter, s->timer_val[4] = core_ticks_to_us(adapter,
TIMERVALUE0_GET(sge_params->sge_timer_value_4_and_5)); TIMERVALUE0_G(sge_params->sge_timer_value_4_and_5));
s->timer_val[5] = core_ticks_to_us(adapter, s->timer_val[5] = core_ticks_to_us(adapter,
TIMERVALUE1_GET(sge_params->sge_timer_value_4_and_5)); TIMERVALUE1_G(sge_params->sge_timer_value_4_and_5));
s->counter_val[0] = THRESHOLD_0_G(sge_params->sge_ingress_rx_threshold); s->counter_val[0] = THRESHOLD_0_G(sge_params->sge_ingress_rx_threshold);
s->counter_val[1] = THRESHOLD_1_G(sge_params->sge_ingress_rx_threshold); s->counter_val[1] = THRESHOLD_1_G(sge_params->sge_ingress_rx_threshold);
......
...@@ -537,11 +537,11 @@ int t4vf_get_sge_params(struct adapter *adapter) ...@@ -537,11 +537,11 @@ int t4vf_get_sge_params(struct adapter *adapter)
params[3] = (FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_REG) | params[3] = (FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_REG) |
FW_PARAMS_PARAM_XYZ_V(SGE_FL_BUFFER_SIZE1_A)); FW_PARAMS_PARAM_XYZ_V(SGE_FL_BUFFER_SIZE1_A));
params[4] = (FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_REG) | params[4] = (FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_REG) |
FW_PARAMS_PARAM_XYZ_V(SGE_TIMER_VALUE_0_AND_1)); FW_PARAMS_PARAM_XYZ_V(SGE_TIMER_VALUE_0_AND_1_A));
params[5] = (FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_REG) | params[5] = (FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_REG) |
FW_PARAMS_PARAM_XYZ_V(SGE_TIMER_VALUE_2_AND_3)); FW_PARAMS_PARAM_XYZ_V(SGE_TIMER_VALUE_2_AND_3_A));
params[6] = (FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_REG) | params[6] = (FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_REG) |
FW_PARAMS_PARAM_XYZ_V(SGE_TIMER_VALUE_4_AND_5)); FW_PARAMS_PARAM_XYZ_V(SGE_TIMER_VALUE_4_AND_5_A));
v = t4vf_query_params(adapter, 7, params, vals); v = t4vf_query_params(adapter, 7, params, vals);
if (v) if (v)
return v; return v;
......
...@@ -959,8 +959,8 @@ csio_do_hello(struct csio_hw *hw, enum csio_dev_state *state) ...@@ -959,8 +959,8 @@ csio_do_hello(struct csio_hw *hw, enum csio_dev_state *state)
* timeout ... and then retry if we haven't exhausted * timeout ... and then retry if we haven't exhausted
* our retries ... * our retries ...
*/ */
pcie_fw = csio_rd_reg32(hw, PCIE_FW); pcie_fw = csio_rd_reg32(hw, PCIE_FW_A);
if (!(pcie_fw & (PCIE_FW_ERR|PCIE_FW_INIT))) { if (!(pcie_fw & (PCIE_FW_ERR_F|PCIE_FW_INIT_F))) {
if (waiting <= 0) { if (waiting <= 0) {
if (retries-- > 0) if (retries-- > 0)
goto retry; goto retry;
...@@ -976,10 +976,10 @@ csio_do_hello(struct csio_hw *hw, enum csio_dev_state *state) ...@@ -976,10 +976,10 @@ csio_do_hello(struct csio_hw *hw, enum csio_dev_state *state)
* report errors preferentially. * report errors preferentially.
*/ */
if (state) { if (state) {
if (pcie_fw & PCIE_FW_ERR) { if (pcie_fw & PCIE_FW_ERR_F) {
*state = CSIO_DEV_STATE_ERR; *state = CSIO_DEV_STATE_ERR;
rv = -ETIMEDOUT; rv = -ETIMEDOUT;
} else if (pcie_fw & PCIE_FW_INIT) } else if (pcie_fw & PCIE_FW_INIT_F)
*state = CSIO_DEV_STATE_INIT; *state = CSIO_DEV_STATE_INIT;
} }
...@@ -988,9 +988,9 @@ csio_do_hello(struct csio_hw *hw, enum csio_dev_state *state) ...@@ -988,9 +988,9 @@ csio_do_hello(struct csio_hw *hw, enum csio_dev_state *state)
* there's not a valid Master PF, grab its identity * there's not a valid Master PF, grab its identity
* for our caller. * for our caller.
*/ */
if (mpfn == PCIE_FW_MASTER_MASK && if (mpfn == PCIE_FW_MASTER_M &&
(pcie_fw & PCIE_FW_MASTER_VLD)) (pcie_fw & PCIE_FW_MASTER_VLD_F))
mpfn = PCIE_FW_MASTER_GET(pcie_fw); mpfn = PCIE_FW_MASTER_G(pcie_fw);
break; break;
} }
hw->flags &= ~CSIO_HWF_MASTER; hw->flags &= ~CSIO_HWF_MASTER;
...@@ -1156,7 +1156,7 @@ csio_hw_fw_halt(struct csio_hw *hw, uint32_t mbox, int32_t force) ...@@ -1156,7 +1156,7 @@ csio_hw_fw_halt(struct csio_hw *hw, uint32_t mbox, int32_t force)
* If a legitimate mailbox is provided, issue a RESET command * If a legitimate mailbox is provided, issue a RESET command
* with a HALT indication. * with a HALT indication.
*/ */
if (mbox <= PCIE_FW_MASTER_MASK) { if (mbox <= PCIE_FW_MASTER_M) {
struct csio_mb *mbp; struct csio_mb *mbp;
mbp = mempool_alloc(hw->mb_mempool, GFP_ATOMIC); mbp = mempool_alloc(hw->mb_mempool, GFP_ATOMIC);
...@@ -1194,7 +1194,8 @@ csio_hw_fw_halt(struct csio_hw *hw, uint32_t mbox, int32_t force) ...@@ -1194,7 +1194,8 @@ csio_hw_fw_halt(struct csio_hw *hw, uint32_t mbox, int32_t force)
*/ */
if (retval == 0 || force) { if (retval == 0 || force) {
csio_set_reg_field(hw, CIM_BOOT_CFG, UPCRST, UPCRST); csio_set_reg_field(hw, CIM_BOOT_CFG, UPCRST, UPCRST);
csio_set_reg_field(hw, PCIE_FW, PCIE_FW_HALT, PCIE_FW_HALT); csio_set_reg_field(hw, PCIE_FW_A, PCIE_FW_HALT_F,
PCIE_FW_HALT_F);
} }
/* /*
...@@ -1234,7 +1235,7 @@ csio_hw_fw_restart(struct csio_hw *hw, uint32_t mbox, int32_t reset) ...@@ -1234,7 +1235,7 @@ csio_hw_fw_restart(struct csio_hw *hw, uint32_t mbox, int32_t reset)
* doing it automatically, we need to clear the PCIE_FW.HALT * doing it automatically, we need to clear the PCIE_FW.HALT
* bit. * bit.
*/ */
csio_set_reg_field(hw, PCIE_FW, PCIE_FW_HALT, 0); csio_set_reg_field(hw, PCIE_FW_A, PCIE_FW_HALT_F, 0);
/* /*
* If we've been given a valid mailbox, first try to get the * If we've been given a valid mailbox, first try to get the
...@@ -1243,7 +1244,7 @@ csio_hw_fw_restart(struct csio_hw *hw, uint32_t mbox, int32_t reset) ...@@ -1243,7 +1244,7 @@ csio_hw_fw_restart(struct csio_hw *hw, uint32_t mbox, int32_t reset)
* valid mailbox or the RESET command failed, fall back to * valid mailbox or the RESET command failed, fall back to
* hitting the chip with a hammer. * hitting the chip with a hammer.
*/ */
if (mbox <= PCIE_FW_MASTER_MASK) { if (mbox <= PCIE_FW_MASTER_M) {
csio_set_reg_field(hw, CIM_BOOT_CFG, UPCRST, 0); csio_set_reg_field(hw, CIM_BOOT_CFG, UPCRST, 0);
msleep(100); msleep(100);
if (csio_do_reset(hw, true) == 0) if (csio_do_reset(hw, true) == 0)
...@@ -1257,7 +1258,7 @@ csio_hw_fw_restart(struct csio_hw *hw, uint32_t mbox, int32_t reset) ...@@ -1257,7 +1258,7 @@ csio_hw_fw_restart(struct csio_hw *hw, uint32_t mbox, int32_t reset)
csio_set_reg_field(hw, CIM_BOOT_CFG, UPCRST, 0); csio_set_reg_field(hw, CIM_BOOT_CFG, UPCRST, 0);
for (ms = 0; ms < FW_CMD_MAX_TIMEOUT; ) { for (ms = 0; ms < FW_CMD_MAX_TIMEOUT; ) {
if (!(csio_rd_reg32(hw, PCIE_FW) & PCIE_FW_HALT)) if (!(csio_rd_reg32(hw, PCIE_FW_A) & PCIE_FW_HALT_F))
return 0; return 0;
msleep(100); msleep(100);
ms += 100; ms += 100;
...@@ -2237,11 +2238,11 @@ csio_hw_intr_enable(struct csio_hw *hw) ...@@ -2237,11 +2238,11 @@ csio_hw_intr_enable(struct csio_hw *hw)
* by FW, so do nothing for INTX. * by FW, so do nothing for INTX.
*/ */
if (hw->intr_mode == CSIO_IM_MSIX) if (hw->intr_mode == CSIO_IM_MSIX)
csio_set_reg_field(hw, MYPF_REG(PCIE_PF_CFG), csio_set_reg_field(hw, MYPF_REG(PCIE_PF_CFG_A),
AIVEC(AIVEC_MASK), vec); AIVEC_V(AIVEC_M), vec);
else if (hw->intr_mode == CSIO_IM_MSI) else if (hw->intr_mode == CSIO_IM_MSI)
csio_set_reg_field(hw, MYPF_REG(PCIE_PF_CFG), csio_set_reg_field(hw, MYPF_REG(PCIE_PF_CFG_A),
AIVEC(AIVEC_MASK), 0); AIVEC_V(AIVEC_M), 0);
csio_wr_reg32(hw, PF_INTR_MASK, MYPF_REG(PL_PF_INT_ENABLE)); csio_wr_reg32(hw, PF_INTR_MASK, MYPF_REG(PL_PF_INT_ENABLE));
......
...@@ -71,10 +71,10 @@ static inline int csio_is_t5(uint16_t chip) ...@@ -71,10 +71,10 @@ static inline int csio_is_t5(uint16_t chip)
#define CSIO_HW_LP_INT_THRESH(hw, val) \ #define CSIO_HW_LP_INT_THRESH(hw, val) \
(csio_is_t4(hw->chip_id) ? (LP_INT_THRESH_V(val)) : \ (csio_is_t4(hw->chip_id) ? (LP_INT_THRESH_V(val)) : \
(V_LP_INT_THRESH_T5(val))) (LP_INT_THRESH_T5_V(val)))
#define CSIO_HW_M_LP_INT_THRESH(hw) \ #define CSIO_HW_M_LP_INT_THRESH(hw) \
(csio_is_t4(hw->chip_id) ? (LP_INT_THRESH_M) : (M_LP_INT_THRESH_T5)) (csio_is_t4(hw->chip_id) ? (LP_INT_THRESH_M) : (LP_INT_THRESH_T5_M))
#define CSIO_MAC_INT_CAUSE_REG(hw, port) \ #define CSIO_MAC_INT_CAUSE_REG(hw, port) \
(csio_is_t4(hw->chip_id) ? (PORT_REG(port, XGMAC_PORT_INT_CAUSE)) : \ (csio_is_t4(hw->chip_id) ? (PORT_REG(port, XGMAC_PORT_INT_CAUSE)) : \
......
...@@ -96,11 +96,11 @@ csio_t4_set_mem_win(struct csio_hw *hw, uint32_t win) ...@@ -96,11 +96,11 @@ csio_t4_set_mem_win(struct csio_hw *hw, uint32_t win)
* back MA register to ensure that changes propagate before we attempt * back MA register to ensure that changes propagate before we attempt
* to use the new values.) * to use the new values.)
*/ */
csio_wr_reg32(hw, mem_win_base | BIR(0) | csio_wr_reg32(hw, mem_win_base | BIR_V(0) |
WINDOW(ilog2(MEMWIN_APERTURE) - 10), WINDOW_V(ilog2(MEMWIN_APERTURE) - 10),
PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_BASE_WIN, win)); PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_BASE_WIN_A, win));
csio_rd_reg32(hw, csio_rd_reg32(hw,
PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_BASE_WIN, win)); PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_BASE_WIN_A, win));
return 0; return 0;
} }
...@@ -111,69 +111,69 @@ static void ...@@ -111,69 +111,69 @@ static void
csio_t4_pcie_intr_handler(struct csio_hw *hw) csio_t4_pcie_intr_handler(struct csio_hw *hw)
{ {
static struct intr_info sysbus_intr_info[] = { static struct intr_info sysbus_intr_info[] = {
{ RNPP, "RXNP array parity error", -1, 1 }, { RNPP_F, "RXNP array parity error", -1, 1 },
{ RPCP, "RXPC array parity error", -1, 1 }, { RPCP_F, "RXPC array parity error", -1, 1 },
{ RCIP, "RXCIF array parity error", -1, 1 }, { RCIP_F, "RXCIF array parity error", -1, 1 },
{ RCCP, "Rx completions control array parity error", -1, 1 }, { RCCP_F, "Rx completions control array parity error", -1, 1 },
{ RFTP, "RXFT array parity error", -1, 1 }, { RFTP_F, "RXFT array parity error", -1, 1 },
{ 0, NULL, 0, 0 } { 0, NULL, 0, 0 }
}; };
static struct intr_info pcie_port_intr_info[] = { static struct intr_info pcie_port_intr_info[] = {
{ TPCP, "TXPC array parity error", -1, 1 }, { TPCP_F, "TXPC array parity error", -1, 1 },
{ TNPP, "TXNP array parity error", -1, 1 }, { TNPP_F, "TXNP array parity error", -1, 1 },
{ TFTP, "TXFT array parity error", -1, 1 }, { TFTP_F, "TXFT array parity error", -1, 1 },
{ TCAP, "TXCA array parity error", -1, 1 }, { TCAP_F, "TXCA array parity error", -1, 1 },
{ TCIP, "TXCIF array parity error", -1, 1 }, { TCIP_F, "TXCIF array parity error", -1, 1 },
{ RCAP, "RXCA array parity error", -1, 1 }, { RCAP_F, "RXCA array parity error", -1, 1 },
{ OTDD, "outbound request TLP discarded", -1, 1 }, { OTDD_F, "outbound request TLP discarded", -1, 1 },
{ RDPE, "Rx data parity error", -1, 1 }, { RDPE_F, "Rx data parity error", -1, 1 },
{ TDUE, "Tx uncorrectable data error", -1, 1 }, { TDUE_F, "Tx uncorrectable data error", -1, 1 },
{ 0, NULL, 0, 0 } { 0, NULL, 0, 0 }
}; };
static struct intr_info pcie_intr_info[] = { static struct intr_info pcie_intr_info[] = {
{ MSIADDRLPERR, "MSI AddrL parity error", -1, 1 }, { MSIADDRLPERR_F, "MSI AddrL parity error", -1, 1 },
{ MSIADDRHPERR, "MSI AddrH parity error", -1, 1 }, { MSIADDRHPERR_F, "MSI AddrH parity error", -1, 1 },
{ MSIDATAPERR, "MSI data parity error", -1, 1 }, { MSIDATAPERR_F, "MSI data parity error", -1, 1 },
{ MSIXADDRLPERR, "MSI-X AddrL parity error", -1, 1 }, { MSIXADDRLPERR_F, "MSI-X AddrL parity error", -1, 1 },
{ MSIXADDRHPERR, "MSI-X AddrH parity error", -1, 1 }, { MSIXADDRHPERR_F, "MSI-X AddrH parity error", -1, 1 },
{ MSIXDATAPERR, "MSI-X data parity error", -1, 1 }, { MSIXDATAPERR_F, "MSI-X data parity error", -1, 1 },
{ MSIXDIPERR, "MSI-X DI parity error", -1, 1 }, { MSIXDIPERR_F, "MSI-X DI parity error", -1, 1 },
{ PIOCPLPERR, "PCI PIO completion FIFO parity error", -1, 1 }, { PIOCPLPERR_F, "PCI PIO completion FIFO parity error", -1, 1 },
{ PIOREQPERR, "PCI PIO request FIFO parity error", -1, 1 }, { PIOREQPERR_F, "PCI PIO request FIFO parity error", -1, 1 },
{ TARTAGPERR, "PCI PCI target tag FIFO parity error", -1, 1 }, { TARTAGPERR_F, "PCI PCI target tag FIFO parity error", -1, 1 },
{ CCNTPERR, "PCI CMD channel count parity error", -1, 1 }, { CCNTPERR_F, "PCI CMD channel count parity error", -1, 1 },
{ CREQPERR, "PCI CMD channel request parity error", -1, 1 }, { CREQPERR_F, "PCI CMD channel request parity error", -1, 1 },
{ CRSPPERR, "PCI CMD channel response parity error", -1, 1 }, { CRSPPERR_F, "PCI CMD channel response parity error", -1, 1 },
{ DCNTPERR, "PCI DMA channel count parity error", -1, 1 }, { DCNTPERR_F, "PCI DMA channel count parity error", -1, 1 },
{ DREQPERR, "PCI DMA channel request parity error", -1, 1 }, { DREQPERR_F, "PCI DMA channel request parity error", -1, 1 },
{ DRSPPERR, "PCI DMA channel response parity error", -1, 1 }, { DRSPPERR_F, "PCI DMA channel response parity error", -1, 1 },
{ HCNTPERR, "PCI HMA channel count parity error", -1, 1 }, { HCNTPERR_F, "PCI HMA channel count parity error", -1, 1 },
{ HREQPERR, "PCI HMA channel request parity error", -1, 1 }, { HREQPERR_F, "PCI HMA channel request parity error", -1, 1 },
{ HRSPPERR, "PCI HMA channel response parity error", -1, 1 }, { HRSPPERR_F, "PCI HMA channel response parity error", -1, 1 },
{ CFGSNPPERR, "PCI config snoop FIFO parity error", -1, 1 }, { CFGSNPPERR_F, "PCI config snoop FIFO parity error", -1, 1 },
{ FIDPERR, "PCI FID parity error", -1, 1 }, { FIDPERR_F, "PCI FID parity error", -1, 1 },
{ INTXCLRPERR, "PCI INTx clear parity error", -1, 1 }, { INTXCLRPERR_F, "PCI INTx clear parity error", -1, 1 },
{ MATAGPERR, "PCI MA tag parity error", -1, 1 }, { MATAGPERR_F, "PCI MA tag parity error", -1, 1 },
{ PIOTAGPERR, "PCI PIO tag parity error", -1, 1 }, { PIOTAGPERR_F, "PCI PIO tag parity error", -1, 1 },
{ RXCPLPERR, "PCI Rx completion parity error", -1, 1 }, { RXCPLPERR_F, "PCI Rx completion parity error", -1, 1 },
{ RXWRPERR, "PCI Rx write parity error", -1, 1 }, { RXWRPERR_F, "PCI Rx write parity error", -1, 1 },
{ RPLPERR, "PCI replay buffer parity error", -1, 1 }, { RPLPERR_F, "PCI replay buffer parity error", -1, 1 },
{ PCIESINT, "PCI core secondary fault", -1, 1 }, { PCIESINT_F, "PCI core secondary fault", -1, 1 },
{ PCIEPINT, "PCI core primary fault", -1, 1 }, { PCIEPINT_F, "PCI core primary fault", -1, 1 },
{ UNXSPLCPLERR, "PCI unexpected split completion error", -1, { UNXSPLCPLERR_F, "PCI unexpected split completion error", -1,
0 }, 0 },
{ 0, NULL, 0, 0 } { 0, NULL, 0, 0 }
}; };
int fat; int fat;
fat = csio_handle_intr_status(hw, fat = csio_handle_intr_status(hw,
PCIE_CORE_UTL_SYSTEM_BUS_AGENT_STATUS, PCIE_CORE_UTL_SYSTEM_BUS_AGENT_STATUS_A,
sysbus_intr_info) + sysbus_intr_info) +
csio_handle_intr_status(hw, csio_handle_intr_status(hw,
PCIE_CORE_UTL_PCI_EXPRESS_PORT_STATUS, PCIE_CORE_UTL_PCI_EXPRESS_PORT_STATUS_A,
pcie_port_intr_info) + pcie_port_intr_info) +
csio_handle_intr_status(hw, PCIE_INT_CAUSE, pcie_intr_info); csio_handle_intr_status(hw, PCIE_INT_CAUSE_A, pcie_intr_info);
if (fat) if (fat)
csio_hw_fatal_err(hw); csio_hw_fatal_err(hw);
} }
...@@ -329,9 +329,9 @@ csio_t4_memory_rw(struct csio_hw *hw, u32 win, int mtype, u32 addr, ...@@ -329,9 +329,9 @@ csio_t4_memory_rw(struct csio_hw *hw, u32 win, int mtype, u32 addr,
* the address is relative to BAR0. * the address is relative to BAR0.
*/ */
mem_reg = csio_rd_reg32(hw, mem_reg = csio_rd_reg32(hw,
PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_BASE_WIN, win)); PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_BASE_WIN_A, win));
mem_aperture = 1 << (WINDOW(mem_reg) + 10); mem_aperture = 1 << (WINDOW_V(mem_reg) + 10);
mem_base = GET_PCIEOFST(mem_reg) << 10; mem_base = PCIEOFST_G(mem_reg) << 10;
bar0 = csio_t4_read_pcie_cfg4(hw, PCI_BASE_ADDRESS_0); bar0 = csio_t4_read_pcie_cfg4(hw, PCI_BASE_ADDRESS_0);
bar0 &= PCI_BASE_ADDRESS_MEM_MASK; bar0 &= PCI_BASE_ADDRESS_MEM_MASK;
...@@ -356,9 +356,9 @@ csio_t4_memory_rw(struct csio_hw *hw, u32 win, int mtype, u32 addr, ...@@ -356,9 +356,9 @@ csio_t4_memory_rw(struct csio_hw *hw, u32 win, int mtype, u32 addr,
* before we attempt to use the new value. * before we attempt to use the new value.
*/ */
csio_wr_reg32(hw, pos, csio_wr_reg32(hw, pos,
PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_OFFSET, win)); PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_OFFSET_A, win));
csio_rd_reg32(hw, csio_rd_reg32(hw,
PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_OFFSET, win)); PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_OFFSET_A, win));
while (offset < mem_aperture && len > 0) { while (offset < mem_aperture && len > 0) {
if (dir) if (dir)
......
...@@ -56,11 +56,11 @@ csio_t5_set_mem_win(struct csio_hw *hw, uint32_t win) ...@@ -56,11 +56,11 @@ csio_t5_set_mem_win(struct csio_hw *hw, uint32_t win)
* back MA register to ensure that changes propagate before we attempt * back MA register to ensure that changes propagate before we attempt
* to use the new values.) * to use the new values.)
*/ */
csio_wr_reg32(hw, mem_win_base | BIR(0) | csio_wr_reg32(hw, mem_win_base | BIR_V(0) |
WINDOW(ilog2(MEMWIN_APERTURE) - 10), WINDOW_V(ilog2(MEMWIN_APERTURE) - 10),
PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_BASE_WIN, win)); PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_BASE_WIN_A, win));
csio_rd_reg32(hw, csio_rd_reg32(hw,
PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_BASE_WIN, win)); PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_BASE_WIN_A, win));
return 0; return 0;
} }
...@@ -72,74 +72,74 @@ static void ...@@ -72,74 +72,74 @@ static void
csio_t5_pcie_intr_handler(struct csio_hw *hw) csio_t5_pcie_intr_handler(struct csio_hw *hw)
{ {
static struct intr_info sysbus_intr_info[] = { static struct intr_info sysbus_intr_info[] = {
{ RNPP, "RXNP array parity error", -1, 1 }, { RNPP_F, "RXNP array parity error", -1, 1 },
{ RPCP, "RXPC array parity error", -1, 1 }, { RPCP_F, "RXPC array parity error", -1, 1 },
{ RCIP, "RXCIF array parity error", -1, 1 }, { RCIP_F, "RXCIF array parity error", -1, 1 },
{ RCCP, "Rx completions control array parity error", -1, 1 }, { RCCP_F, "Rx completions control array parity error", -1, 1 },
{ RFTP, "RXFT array parity error", -1, 1 }, { RFTP_F, "RXFT array parity error", -1, 1 },
{ 0, NULL, 0, 0 } { 0, NULL, 0, 0 }
}; };
static struct intr_info pcie_port_intr_info[] = { static struct intr_info pcie_port_intr_info[] = {
{ TPCP, "TXPC array parity error", -1, 1 }, { TPCP_F, "TXPC array parity error", -1, 1 },
{ TNPP, "TXNP array parity error", -1, 1 }, { TNPP_F, "TXNP array parity error", -1, 1 },
{ TFTP, "TXFT array parity error", -1, 1 }, { TFTP_F, "TXFT array parity error", -1, 1 },
{ TCAP, "TXCA array parity error", -1, 1 }, { TCAP_F, "TXCA array parity error", -1, 1 },
{ TCIP, "TXCIF array parity error", -1, 1 }, { TCIP_F, "TXCIF array parity error", -1, 1 },
{ RCAP, "RXCA array parity error", -1, 1 }, { RCAP_F, "RXCA array parity error", -1, 1 },
{ OTDD, "outbound request TLP discarded", -1, 1 }, { OTDD_F, "outbound request TLP discarded", -1, 1 },
{ RDPE, "Rx data parity error", -1, 1 }, { RDPE_F, "Rx data parity error", -1, 1 },
{ TDUE, "Tx uncorrectable data error", -1, 1 }, { TDUE_F, "Tx uncorrectable data error", -1, 1 },
{ 0, NULL, 0, 0 } { 0, NULL, 0, 0 }
}; };
static struct intr_info pcie_intr_info[] = { static struct intr_info pcie_intr_info[] = {
{ MSTGRPPERR, "Master Response Read Queue parity error", { MSTGRPPERR_F, "Master Response Read Queue parity error",
-1, 1 }, -1, 1 },
{ MSTTIMEOUTPERR, "Master Timeout FIFO parity error", -1, 1 }, { MSTTIMEOUTPERR_F, "Master Timeout FIFO parity error", -1, 1 },
{ MSIXSTIPERR, "MSI-X STI SRAM parity error", -1, 1 }, { MSIXSTIPERR_F, "MSI-X STI SRAM parity error", -1, 1 },
{ MSIXADDRLPERR, "MSI-X AddrL parity error", -1, 1 }, { MSIXADDRLPERR_F, "MSI-X AddrL parity error", -1, 1 },
{ MSIXADDRHPERR, "MSI-X AddrH parity error", -1, 1 }, { MSIXADDRHPERR_F, "MSI-X AddrH parity error", -1, 1 },
{ MSIXDATAPERR, "MSI-X data parity error", -1, 1 }, { MSIXDATAPERR_F, "MSI-X data parity error", -1, 1 },
{ MSIXDIPERR, "MSI-X DI parity error", -1, 1 }, { MSIXDIPERR_F, "MSI-X DI parity error", -1, 1 },
{ PIOCPLGRPPERR, "PCI PIO completion Group FIFO parity error", { PIOCPLGRPPERR_F, "PCI PIO completion Group FIFO parity error",
-1, 1 }, -1, 1 },
{ PIOREQGRPPERR, "PCI PIO request Group FIFO parity error", { PIOREQGRPPERR_F, "PCI PIO request Group FIFO parity error",
-1, 1 }, -1, 1 },
{ TARTAGPERR, "PCI PCI target tag FIFO parity error", -1, 1 }, { TARTAGPERR_F, "PCI PCI target tag FIFO parity error", -1, 1 },
{ MSTTAGQPERR, "PCI master tag queue parity error", -1, 1 }, { MSTTAGQPERR_F, "PCI master tag queue parity error", -1, 1 },
{ CREQPERR, "PCI CMD channel request parity error", -1, 1 }, { CREQPERR_F, "PCI CMD channel request parity error", -1, 1 },
{ CRSPPERR, "PCI CMD channel response parity error", -1, 1 }, { CRSPPERR_F, "PCI CMD channel response parity error", -1, 1 },
{ DREQWRPERR, "PCI DMA channel write request parity error", { DREQWRPERR_F, "PCI DMA channel write request parity error",
-1, 1 }, -1, 1 },
{ DREQPERR, "PCI DMA channel request parity error", -1, 1 }, { DREQPERR_F, "PCI DMA channel request parity error", -1, 1 },
{ DRSPPERR, "PCI DMA channel response parity error", -1, 1 }, { DRSPPERR_F, "PCI DMA channel response parity error", -1, 1 },
{ HREQWRPERR, "PCI HMA channel count parity error", -1, 1 }, { HREQWRPERR_F, "PCI HMA channel count parity error", -1, 1 },
{ HREQPERR, "PCI HMA channel request parity error", -1, 1 }, { HREQPERR_F, "PCI HMA channel request parity error", -1, 1 },
{ HRSPPERR, "PCI HMA channel response parity error", -1, 1 }, { HRSPPERR_F, "PCI HMA channel response parity error", -1, 1 },
{ CFGSNPPERR, "PCI config snoop FIFO parity error", -1, 1 }, { CFGSNPPERR_F, "PCI config snoop FIFO parity error", -1, 1 },
{ FIDPERR, "PCI FID parity error", -1, 1 }, { FIDPERR_F, "PCI FID parity error", -1, 1 },
{ VFIDPERR, "PCI INTx clear parity error", -1, 1 }, { VFIDPERR_F, "PCI INTx clear parity error", -1, 1 },
{ MAGRPPERR, "PCI MA group FIFO parity error", -1, 1 }, { MAGRPPERR_F, "PCI MA group FIFO parity error", -1, 1 },
{ PIOTAGPERR, "PCI PIO tag parity error", -1, 1 }, { PIOTAGPERR_F, "PCI PIO tag parity error", -1, 1 },
{ IPRXHDRGRPPERR, "PCI IP Rx header group parity error", { IPRXHDRGRPPERR_F, "PCI IP Rx header group parity error",
-1, 1 }, -1, 1 },
{ IPRXDATAGRPPERR, "PCI IP Rx data group parity error", { IPRXDATAGRPPERR_F, "PCI IP Rx data group parity error",
-1, 1 }, -1, 1 },
{ RPLPERR, "PCI IP replay buffer parity error", -1, 1 }, { RPLPERR_F, "PCI IP replay buffer parity error", -1, 1 },
{ IPSOTPERR, "PCI IP SOT buffer parity error", -1, 1 }, { IPSOTPERR_F, "PCI IP SOT buffer parity error", -1, 1 },
{ TRGT1GRPPERR, "PCI TRGT1 group FIFOs parity error", -1, 1 }, { TRGT1GRPPERR_F, "PCI TRGT1 group FIFOs parity error", -1, 1 },
{ READRSPERR, "Outbound read error", -1, 0 }, { READRSPERR_F, "Outbound read error", -1, 0 },
{ 0, NULL, 0, 0 } { 0, NULL, 0, 0 }
}; };
int fat; int fat;
fat = csio_handle_intr_status(hw, fat = csio_handle_intr_status(hw,
PCIE_CORE_UTL_SYSTEM_BUS_AGENT_STATUS, PCIE_CORE_UTL_SYSTEM_BUS_AGENT_STATUS_A,
sysbus_intr_info) + sysbus_intr_info) +
csio_handle_intr_status(hw, csio_handle_intr_status(hw,
PCIE_CORE_UTL_PCI_EXPRESS_PORT_STATUS, PCIE_CORE_UTL_PCI_EXPRESS_PORT_STATUS_A,
pcie_port_intr_info) + pcie_port_intr_info) +
csio_handle_intr_status(hw, PCIE_INT_CAUSE, pcie_intr_info); csio_handle_intr_status(hw, PCIE_INT_CAUSE_A, pcie_intr_info);
if (fat) if (fat)
csio_hw_fatal_err(hw); csio_hw_fatal_err(hw);
} }
...@@ -320,13 +320,13 @@ csio_t5_memory_rw(struct csio_hw *hw, u32 win, int mtype, u32 addr, ...@@ -320,13 +320,13 @@ csio_t5_memory_rw(struct csio_hw *hw, u32 win, int mtype, u32 addr,
* the address is relative to BAR0. * the address is relative to BAR0.
*/ */
mem_reg = csio_rd_reg32(hw, mem_reg = csio_rd_reg32(hw,
PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_BASE_WIN, win)); PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_BASE_WIN_A, win));
mem_aperture = 1 << (WINDOW(mem_reg) + 10); mem_aperture = 1 << (WINDOW_V(mem_reg) + 10);
mem_base = GET_PCIEOFST(mem_reg) << 10; mem_base = PCIEOFST_G(mem_reg) << 10;
start = addr & ~(mem_aperture-1); start = addr & ~(mem_aperture-1);
offset = addr - start; offset = addr - start;
win_pf = V_PFNUM(hw->pfn); win_pf = PFNUM_V(hw->pfn);
csio_dbg(hw, "csio_t5_memory_rw: mem_reg: 0x%x, mem_aperture: 0x%x\n", csio_dbg(hw, "csio_t5_memory_rw: mem_reg: 0x%x, mem_aperture: 0x%x\n",
mem_reg, mem_aperture); mem_reg, mem_aperture);
...@@ -344,9 +344,9 @@ csio_t5_memory_rw(struct csio_hw *hw, u32 win, int mtype, u32 addr, ...@@ -344,9 +344,9 @@ csio_t5_memory_rw(struct csio_hw *hw, u32 win, int mtype, u32 addr,
* before we attempt to use the new value. * before we attempt to use the new value.
*/ */
csio_wr_reg32(hw, pos | win_pf, csio_wr_reg32(hw, pos | win_pf,
PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_OFFSET, win)); PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_OFFSET_A, win));
csio_rd_reg32(hw, csio_rd_reg32(hw,
PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_OFFSET, win)); PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_OFFSET_A, win));
while (offset < mem_aperture && len > 0) { while (offset < mem_aperture && len > 0) {
if (dir) if (dir)
......
...@@ -317,7 +317,7 @@ csio_fcoe_isr(int irq, void *dev_id) ...@@ -317,7 +317,7 @@ csio_fcoe_isr(int irq, void *dev_id)
/* Disable the interrupt for this PCI function. */ /* Disable the interrupt for this PCI function. */
if (hw->intr_mode == CSIO_IM_INTX) if (hw->intr_mode == CSIO_IM_INTX)
csio_wr_reg32(hw, 0, MYPF_REG(PCIE_PF_CLI)); csio_wr_reg32(hw, 0, MYPF_REG(PCIE_PF_CLI_A));
/* /*
* The read in the following function will flush the * The read in the following function will flush the
......
...@@ -1412,22 +1412,22 @@ csio_wr_get_sge(struct csio_hw *hw) ...@@ -1412,22 +1412,22 @@ csio_wr_get_sge(struct csio_hw *hw)
for (i = 0; i < CSIO_SGE_FL_SIZE_REGS; i++) for (i = 0; i < CSIO_SGE_FL_SIZE_REGS; i++)
csio_get_flbuf_size(hw, sge, i); csio_get_flbuf_size(hw, sge, i);
timer_value_0_and_1 = csio_rd_reg32(hw, SGE_TIMER_VALUE_0_AND_1); timer_value_0_and_1 = csio_rd_reg32(hw, SGE_TIMER_VALUE_0_AND_1_A);
timer_value_2_and_3 = csio_rd_reg32(hw, SGE_TIMER_VALUE_2_AND_3); timer_value_2_and_3 = csio_rd_reg32(hw, SGE_TIMER_VALUE_2_AND_3_A);
timer_value_4_and_5 = csio_rd_reg32(hw, SGE_TIMER_VALUE_4_AND_5); timer_value_4_and_5 = csio_rd_reg32(hw, SGE_TIMER_VALUE_4_AND_5_A);
sge->timer_val[0] = (uint16_t)csio_core_ticks_to_us(hw, sge->timer_val[0] = (uint16_t)csio_core_ticks_to_us(hw,
TIMERVALUE0_GET(timer_value_0_and_1)); TIMERVALUE0_G(timer_value_0_and_1));
sge->timer_val[1] = (uint16_t)csio_core_ticks_to_us(hw, sge->timer_val[1] = (uint16_t)csio_core_ticks_to_us(hw,
TIMERVALUE1_GET(timer_value_0_and_1)); TIMERVALUE1_G(timer_value_0_and_1));
sge->timer_val[2] = (uint16_t)csio_core_ticks_to_us(hw, sge->timer_val[2] = (uint16_t)csio_core_ticks_to_us(hw,
TIMERVALUE2_GET(timer_value_2_and_3)); TIMERVALUE2_G(timer_value_2_and_3));
sge->timer_val[3] = (uint16_t)csio_core_ticks_to_us(hw, sge->timer_val[3] = (uint16_t)csio_core_ticks_to_us(hw,
TIMERVALUE3_GET(timer_value_2_and_3)); TIMERVALUE3_G(timer_value_2_and_3));
sge->timer_val[4] = (uint16_t)csio_core_ticks_to_us(hw, sge->timer_val[4] = (uint16_t)csio_core_ticks_to_us(hw,
TIMERVALUE4_GET(timer_value_4_and_5)); TIMERVALUE4_G(timer_value_4_and_5));
sge->timer_val[5] = (uint16_t)csio_core_ticks_to_us(hw, sge->timer_val[5] = (uint16_t)csio_core_ticks_to_us(hw,
TIMERVALUE5_GET(timer_value_4_and_5)); TIMERVALUE5_G(timer_value_4_and_5));
ingress_rx_threshold = csio_rd_reg32(hw, SGE_INGRESS_RX_THRESHOLD_A); ingress_rx_threshold = csio_rd_reg32(hw, SGE_INGRESS_RX_THRESHOLD_A);
sge->counter_val[0] = THRESHOLD_0_G(ingress_rx_threshold); sge->counter_val[0] = THRESHOLD_0_G(ingress_rx_threshold);
...@@ -1513,19 +1513,19 @@ csio_wr_set_sge(struct csio_hw *hw) ...@@ -1513,19 +1513,19 @@ csio_wr_set_sge(struct csio_hw *hw)
SGE_INGRESS_RX_THRESHOLD_A); SGE_INGRESS_RX_THRESHOLD_A);
csio_wr_reg32(hw, csio_wr_reg32(hw,
TIMERVALUE0(csio_us_to_core_ticks(hw, sge->timer_val[0])) | TIMERVALUE0_V(csio_us_to_core_ticks(hw, sge->timer_val[0])) |
TIMERVALUE1(csio_us_to_core_ticks(hw, sge->timer_val[1])), TIMERVALUE1_V(csio_us_to_core_ticks(hw, sge->timer_val[1])),
SGE_TIMER_VALUE_0_AND_1); SGE_TIMER_VALUE_0_AND_1_A);
csio_wr_reg32(hw, csio_wr_reg32(hw,
TIMERVALUE2(csio_us_to_core_ticks(hw, sge->timer_val[2])) | TIMERVALUE2_V(csio_us_to_core_ticks(hw, sge->timer_val[2])) |
TIMERVALUE3(csio_us_to_core_ticks(hw, sge->timer_val[3])), TIMERVALUE3_V(csio_us_to_core_ticks(hw, sge->timer_val[3])),
SGE_TIMER_VALUE_2_AND_3); SGE_TIMER_VALUE_2_AND_3_A);
csio_wr_reg32(hw, csio_wr_reg32(hw,
TIMERVALUE4(csio_us_to_core_ticks(hw, sge->timer_val[4])) | TIMERVALUE4_V(csio_us_to_core_ticks(hw, sge->timer_val[4])) |
TIMERVALUE5(csio_us_to_core_ticks(hw, sge->timer_val[5])), TIMERVALUE5_V(csio_us_to_core_ticks(hw, sge->timer_val[5])),
SGE_TIMER_VALUE_4_AND_5); SGE_TIMER_VALUE_4_AND_5_A);
csio_init_intr_coalesce_parms(hw); csio_init_intr_coalesce_parms(hw);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment