Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-2.6
[pandora-kernel.git] / drivers / scsi / bfa / bfa_hw_ct.c
1 /*
2  * Copyright (c) 2005-2010 Brocade Communications Systems, Inc.
3  * All rights reserved
4  * www.brocade.com
5  *
6  * Linux driver for Brocade Fibre Channel Host Bus Adapter.
7  *
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
11  *
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.
16  */
17
18 #include "bfad_drv.h"
19 #include "bfa_modules.h"
20 #include "bfi_reg.h"
21
22 BFA_TRC_FILE(HAL, IOCFC_CT);
23
24 /*
25  * Dummy interrupt handler for handling spurious interrupt during chip-reinit.
26  */
27 static void
28 bfa_hwct_msix_dummy(struct bfa_s *bfa, int vec)
29 {
30 }
31
32 void
33 bfa_hwct_reginit(struct bfa_s *bfa)
34 {
35         struct bfa_iocfc_regs_s *bfa_regs = &bfa->iocfc.bfa_regs;
36         void __iomem *kva = bfa_ioc_bar0(&bfa->ioc);
37         int     fn = bfa_ioc_pcifn(&bfa->ioc);
38
39         if (fn == 0) {
40                 bfa_regs->intr_status = (kva + HOSTFN0_INT_STATUS);
41                 bfa_regs->intr_mask   = (kva + HOSTFN0_INT_MSK);
42         } else {
43                 bfa_regs->intr_status = (kva + HOSTFN1_INT_STATUS);
44                 bfa_regs->intr_mask   = (kva + HOSTFN1_INT_MSK);
45         }
46 }
47
48 void
49 bfa_hwct2_reginit(struct bfa_s *bfa)
50 {
51         struct bfa_iocfc_regs_s *bfa_regs = &bfa->iocfc.bfa_regs;
52         void __iomem    *kva = bfa_ioc_bar0(&bfa->ioc);
53
54         bfa_regs->intr_status = (kva + CT2_HOSTFN_INT_STATUS);
55         bfa_regs->intr_mask   = (kva + CT2_HOSTFN_INTR_MASK);
56 }
57
58 void
59 bfa_hwct_reqq_ack(struct bfa_s *bfa, int reqq)
60 {
61         u32     r32;
62
63         r32 = readl(bfa->iocfc.bfa_regs.cpe_q_ctrl[reqq]);
64         writel(r32, bfa->iocfc.bfa_regs.cpe_q_ctrl[reqq]);
65 }
66
67 void
68 bfa_hwct_rspq_ack(struct bfa_s *bfa, int rspq)
69 {
70         u32     r32;
71
72         r32 = readl(bfa->iocfc.bfa_regs.rme_q_ctrl[rspq]);
73         writel(r32, bfa->iocfc.bfa_regs.rme_q_ctrl[rspq]);
74 }
75
76 void
77 bfa_hwct_msix_getvecs(struct bfa_s *bfa, u32 *msix_vecs_bmap,
78                  u32 *num_vecs, u32 *max_vec_bit)
79 {
80         *msix_vecs_bmap = (1 << BFI_MSIX_CT_MAX) - 1;
81         *max_vec_bit = (1 << (BFI_MSIX_CT_MAX - 1));
82         *num_vecs = BFI_MSIX_CT_MAX;
83 }
84
85 /*
86  * Setup MSI-X vector for catapult
87  */
88 void
89 bfa_hwct_msix_init(struct bfa_s *bfa, int nvecs)
90 {
91         WARN_ON((nvecs != 1) && (nvecs != BFI_MSIX_CT_MAX));
92         bfa_trc(bfa, nvecs);
93
94         bfa->msix.nvecs = nvecs;
95         bfa_hwct_msix_uninstall(bfa);
96 }
97
98 void
99 bfa_hwct_msix_ctrl_install(struct bfa_s *bfa)
100 {
101         if (bfa->msix.nvecs == 0)
102                 return;
103
104         if (bfa->msix.nvecs == 1)
105                 bfa->msix.handler[BFI_MSIX_LPU_ERR_CT] = bfa_msix_all;
106         else
107                 bfa->msix.handler[BFI_MSIX_LPU_ERR_CT] = bfa_msix_lpu_err;
108 }
109
110 void
111 bfa_hwct_msix_queue_install(struct bfa_s *bfa)
112 {
113         int i;
114
115         if (bfa->msix.nvecs == 0)
116                 return;
117
118         if (bfa->msix.nvecs == 1) {
119                 for (i = BFI_MSIX_CPE_QMIN_CT; i < BFI_MSIX_CT_MAX; i++)
120                         bfa->msix.handler[i] = bfa_msix_all;
121                 return;
122         }
123
124         for (i = BFI_MSIX_CPE_QMIN_CT; i <= BFI_MSIX_CPE_QMAX_CT; i++)
125                 bfa->msix.handler[i] = bfa_msix_reqq;
126
127         for (i = BFI_MSIX_RME_QMIN_CT; i <= BFI_MSIX_RME_QMAX_CT; i++)
128                 bfa->msix.handler[i] = bfa_msix_rspq;
129 }
130
131 void
132 bfa_hwct_msix_uninstall(struct bfa_s *bfa)
133 {
134         int i;
135
136         for (i = 0; i < BFI_MSIX_CT_MAX; i++)
137                 bfa->msix.handler[i] = bfa_hwct_msix_dummy;
138 }
139
140 /*
141  * Enable MSI-X vectors
142  */
143 void
144 bfa_hwct_isr_mode_set(struct bfa_s *bfa, bfa_boolean_t msix)
145 {
146         bfa_trc(bfa, 0);
147         bfa_ioc_isr_mode_set(&bfa->ioc, msix);
148 }
149
150 void
151 bfa_hwct_msix_get_rme_range(struct bfa_s *bfa, u32 *start, u32 *end)
152 {
153         *start = BFI_MSIX_RME_QMIN_CT;
154         *end = BFI_MSIX_RME_QMAX_CT;
155 }