Linux 4.16.11
[linux/fpc-iii.git] / drivers / scsi / bfa / bfa_hw_ct.c
blobb0ff378dece2c74d3b975860238eaab1ef5e73c2
1 /*
2 * Copyright (c) 2005-2014 Brocade Communications Systems, Inc.
3 * Copyright (c) 2014- QLogic Corporation.
4 * All rights reserved
5 * www.qlogic.com
7 * Linux driver for QLogic BR-series Fibre Channel Host Bus Adapter.
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License (GPL) Version 2 as
11 * published by the Free Software Foundation
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
19 #include "bfad_drv.h"
20 #include "bfa_modules.h"
21 #include "bfi_reg.h"
23 BFA_TRC_FILE(HAL, IOCFC_CT);
26 * Dummy interrupt handler for handling spurious interrupt during chip-reinit.
28 static void
29 bfa_hwct_msix_dummy(struct bfa_s *bfa, int vec)
33 void
34 bfa_hwct_reginit(struct bfa_s *bfa)
36 struct bfa_iocfc_regs_s *bfa_regs = &bfa->iocfc.bfa_regs;
37 void __iomem *kva = bfa_ioc_bar0(&bfa->ioc);
38 int fn = bfa_ioc_pcifn(&bfa->ioc);
40 if (fn == 0) {
41 bfa_regs->intr_status = (kva + HOSTFN0_INT_STATUS);
42 bfa_regs->intr_mask = (kva + HOSTFN0_INT_MSK);
43 } else {
44 bfa_regs->intr_status = (kva + HOSTFN1_INT_STATUS);
45 bfa_regs->intr_mask = (kva + HOSTFN1_INT_MSK);
49 void
50 bfa_hwct2_reginit(struct bfa_s *bfa)
52 struct bfa_iocfc_regs_s *bfa_regs = &bfa->iocfc.bfa_regs;
53 void __iomem *kva = bfa_ioc_bar0(&bfa->ioc);
55 bfa_regs->intr_status = (kva + CT2_HOSTFN_INT_STATUS);
56 bfa_regs->intr_mask = (kva + CT2_HOSTFN_INTR_MASK);
59 void
60 bfa_hwct_reqq_ack(struct bfa_s *bfa, int reqq)
62 u32 r32;
64 r32 = readl(bfa->iocfc.bfa_regs.cpe_q_ctrl[reqq]);
65 writel(r32, bfa->iocfc.bfa_regs.cpe_q_ctrl[reqq]);
69 * Actions to respond RME Interrupt for Catapult ASIC:
70 * - Write 1 to Interrupt Status register (INTx only - done in bfa_intx())
71 * - Acknowledge by writing to RME Queue Control register
72 * - Update CI
74 void
75 bfa_hwct_rspq_ack(struct bfa_s *bfa, int rspq, u32 ci)
77 u32 r32;
79 r32 = readl(bfa->iocfc.bfa_regs.rme_q_ctrl[rspq]);
80 writel(r32, bfa->iocfc.bfa_regs.rme_q_ctrl[rspq]);
82 bfa_rspq_ci(bfa, rspq) = ci;
83 writel(ci, bfa->iocfc.bfa_regs.rme_q_ci[rspq]);
84 mmiowb();
88 * Actions to respond RME Interrupt for Catapult2 ASIC:
89 * - Write 1 to Interrupt Status register (INTx only - done in bfa_intx())
90 * - Update CI
92 void
93 bfa_hwct2_rspq_ack(struct bfa_s *bfa, int rspq, u32 ci)
95 bfa_rspq_ci(bfa, rspq) = ci;
96 writel(ci, bfa->iocfc.bfa_regs.rme_q_ci[rspq]);
97 mmiowb();
100 void
101 bfa_hwct_msix_getvecs(struct bfa_s *bfa, u32 *msix_vecs_bmap,
102 u32 *num_vecs, u32 *max_vec_bit)
104 *msix_vecs_bmap = (1 << BFI_MSIX_CT_MAX) - 1;
105 *max_vec_bit = (1 << (BFI_MSIX_CT_MAX - 1));
106 *num_vecs = BFI_MSIX_CT_MAX;
110 * Setup MSI-X vector for catapult
112 void
113 bfa_hwct_msix_init(struct bfa_s *bfa, int nvecs)
115 WARN_ON((nvecs != 1) && (nvecs != BFI_MSIX_CT_MAX));
116 bfa_trc(bfa, nvecs);
118 bfa->msix.nvecs = nvecs;
119 bfa_hwct_msix_uninstall(bfa);
122 void
123 bfa_hwct_msix_ctrl_install(struct bfa_s *bfa)
125 if (bfa->msix.nvecs == 0)
126 return;
128 if (bfa->msix.nvecs == 1)
129 bfa->msix.handler[BFI_MSIX_LPU_ERR_CT] = bfa_msix_all;
130 else
131 bfa->msix.handler[BFI_MSIX_LPU_ERR_CT] = bfa_msix_lpu_err;
134 void
135 bfa_hwct_msix_queue_install(struct bfa_s *bfa)
137 int i;
139 if (bfa->msix.nvecs == 0)
140 return;
142 if (bfa->msix.nvecs == 1) {
143 for (i = BFI_MSIX_CPE_QMIN_CT; i < BFI_MSIX_CT_MAX; i++)
144 bfa->msix.handler[i] = bfa_msix_all;
145 return;
148 for (i = BFI_MSIX_CPE_QMIN_CT; i <= BFI_MSIX_CPE_QMAX_CT; i++)
149 bfa->msix.handler[i] = bfa_msix_reqq;
151 for (i = BFI_MSIX_RME_QMIN_CT; i <= BFI_MSIX_RME_QMAX_CT; i++)
152 bfa->msix.handler[i] = bfa_msix_rspq;
155 void
156 bfa_hwct_msix_uninstall(struct bfa_s *bfa)
158 int i;
160 for (i = 0; i < BFI_MSIX_CT_MAX; i++)
161 bfa->msix.handler[i] = bfa_hwct_msix_dummy;
165 * Enable MSI-X vectors
167 void
168 bfa_hwct_isr_mode_set(struct bfa_s *bfa, bfa_boolean_t msix)
170 bfa_trc(bfa, 0);
171 bfa_ioc_isr_mode_set(&bfa->ioc, msix);
174 void
175 bfa_hwct_msix_get_rme_range(struct bfa_s *bfa, u32 *start, u32 *end)
177 *start = BFI_MSIX_RME_QMIN_CT;
178 *end = BFI_MSIX_RME_QMAX_CT;