2 * Copyright (c) 2005-2009 Brocade Communications Systems, Inc.
6 * Linux driver for Brocade Fibre Channel Host Bus Adapter.
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License (GPL) Version 2 as
10 * published by the Free Software Foundation
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
19 #include <bfi/bfi_ctreg.h>
22 BFA_TRC_FILE(HAL
, IOCFC_CT
);
24 static u32 __ct_msix_err_vec_reg
[] = {
25 HOST_MSIX_ERR_INDEX_FN0
,
26 HOST_MSIX_ERR_INDEX_FN1
,
27 HOST_MSIX_ERR_INDEX_FN2
,
28 HOST_MSIX_ERR_INDEX_FN3
,
32 bfa_hwct_msix_lpu_err_set(struct bfa_s
*bfa
, bfa_boolean_t msix
, int vec
)
34 int fn
= bfa_ioc_pcifn(&bfa
->ioc
);
35 bfa_os_addr_t kva
= bfa_ioc_bar0(&bfa
->ioc
);
38 bfa_reg_write(kva
+ __ct_msix_err_vec_reg
[fn
], vec
);
40 bfa_reg_write(kva
+ __ct_msix_err_vec_reg
[fn
], 0);
44 * Dummy interrupt handler for handling spurious interrupt during chip-reinit.
47 bfa_hwct_msix_dummy(struct bfa_s
*bfa
, int vec
)
52 bfa_hwct_reginit(struct bfa_s
*bfa
)
54 struct bfa_iocfc_regs_s
*bfa_regs
= &bfa
->iocfc
.bfa_regs
;
55 bfa_os_addr_t kva
= bfa_ioc_bar0(&bfa
->ioc
);
56 int i
, q
, fn
= bfa_ioc_pcifn(&bfa
->ioc
);
59 bfa_regs
->intr_status
= (kva
+ HOSTFN0_INT_STATUS
);
60 bfa_regs
->intr_mask
= (kva
+ HOSTFN0_INT_MSK
);
62 bfa_regs
->intr_status
= (kva
+ HOSTFN1_INT_STATUS
);
63 bfa_regs
->intr_mask
= (kva
+ HOSTFN1_INT_MSK
);
66 for (i
= 0; i
< BFI_IOC_MAX_CQS
; i
++) {
71 bfa_regs
->cpe_q_pi
[i
] = (kva
+ CPE_PI_PTR_Q(q
<< 5));
72 bfa_regs
->cpe_q_ci
[i
] = (kva
+ CPE_CI_PTR_Q(q
<< 5));
73 bfa_regs
->cpe_q_depth
[i
] = (kva
+ CPE_DEPTH_Q(q
<< 5));
74 bfa_regs
->cpe_q_ctrl
[i
] = (kva
+ CPE_QCTRL_Q(q
<< 5));
80 bfa_regs
->rme_q_pi
[i
] = (kva
+ RME_PI_PTR_Q(q
<< 5));
81 bfa_regs
->rme_q_ci
[i
] = (kva
+ RME_CI_PTR_Q(q
<< 5));
82 bfa_regs
->rme_q_depth
[i
] = (kva
+ RME_DEPTH_Q(q
<< 5));
83 bfa_regs
->rme_q_ctrl
[i
] = (kva
+ RME_QCTRL_Q(q
<< 5));
88 bfa_hwct_rspq_ack(struct bfa_s
*bfa
, int rspq
)
92 r32
= bfa_reg_read(bfa
->iocfc
.bfa_regs
.rme_q_ctrl
[rspq
]);
93 bfa_reg_write(bfa
->iocfc
.bfa_regs
.rme_q_ctrl
[rspq
], r32
);
97 bfa_hwct_msix_getvecs(struct bfa_s
*bfa
, u32
*msix_vecs_bmap
,
98 u32
*num_vecs
, u32
*max_vec_bit
)
100 *msix_vecs_bmap
= (1 << BFA_MSIX_CT_MAX
) - 1;
101 *max_vec_bit
= (1 << (BFA_MSIX_CT_MAX
- 1));
102 *num_vecs
= BFA_MSIX_CT_MAX
;
106 * Setup MSI-X vector for catapult
109 bfa_hwct_msix_init(struct bfa_s
*bfa
, int nvecs
)
111 bfa_assert((nvecs
== 1) || (nvecs
== BFA_MSIX_CT_MAX
));
114 bfa
->msix
.nvecs
= nvecs
;
115 bfa_hwct_msix_uninstall(bfa
);
119 bfa_hwct_msix_install(struct bfa_s
*bfa
)
123 if (bfa
->msix
.nvecs
== 0)
126 if (bfa
->msix
.nvecs
== 1) {
127 for (i
= 0; i
< BFA_MSIX_CT_MAX
; i
++)
128 bfa
->msix
.handler
[i
] = bfa_msix_all
;
132 for (i
= BFA_MSIX_CPE_Q0
; i
<= BFA_MSIX_CPE_Q3
; i
++)
133 bfa
->msix
.handler
[i
] = bfa_msix_reqq
;
135 for (; i
<= BFA_MSIX_RME_Q3
; i
++)
136 bfa
->msix
.handler
[i
] = bfa_msix_rspq
;
138 bfa_assert(i
== BFA_MSIX_LPU_ERR
);
139 bfa
->msix
.handler
[BFA_MSIX_LPU_ERR
] = bfa_msix_lpu_err
;
143 bfa_hwct_msix_uninstall(struct bfa_s
*bfa
)
147 for (i
= 0; i
< BFA_MSIX_CT_MAX
; i
++)
148 bfa
->msix
.handler
[i
] = bfa_hwct_msix_dummy
;
152 * Enable MSI-X vectors
155 bfa_hwct_isr_mode_set(struct bfa_s
*bfa
, bfa_boolean_t msix
)
158 bfa_hwct_msix_lpu_err_set(bfa
, msix
, BFA_MSIX_LPU_ERR
);
159 bfa_ioc_isr_mode_set(&bfa
->ioc
, msix
);