Jing Huang | 7725ccf | 2009-09-23 17:46:15 -0700 | [diff] [blame] | 1 | /* |
Krishna Gudipati | a36c61f | 2010-09-15 11:50:55 -0700 | [diff] [blame] | 2 | * Copyright (c) 2005-2010 Brocade Communications Systems, Inc. |
Jing Huang | 7725ccf | 2009-09-23 17:46:15 -0700 | [diff] [blame] | 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 | |
Maggie Zhang | f16a175 | 2010-12-09 19:12:32 -0800 | [diff] [blame] | 18 | #include "bfad_drv.h" |
Krishna Gudipati | a36c61f | 2010-09-15 11:50:55 -0700 | [diff] [blame] | 19 | #include "bfa_modules.h" |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 20 | #include "bfi_reg.h" |
Jing Huang | 7725ccf | 2009-09-23 17:46:15 -0700 | [diff] [blame] | 21 | |
| 22 | BFA_TRC_FILE(HAL, IOCFC_CT); |
| 23 | |
Jing Huang | 5fbe25c | 2010-10-18 17:17:23 -0700 | [diff] [blame] | 24 | /* |
Jing Huang | 7725ccf | 2009-09-23 17:46:15 -0700 | [diff] [blame] | 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; |
Jing Huang | 5344026 | 2010-10-18 17:12:29 -0700 | [diff] [blame] | 36 | void __iomem *kva = bfa_ioc_bar0(&bfa->ioc); |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 37 | int fn = bfa_ioc_pcifn(&bfa->ioc); |
Jing Huang | 7725ccf | 2009-09-23 17:46:15 -0700 | [diff] [blame] | 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 | } |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 46 | } |
Jing Huang | 7725ccf | 2009-09-23 17:46:15 -0700 | [diff] [blame] | 47 | |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 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); |
Jing Huang | 7725ccf | 2009-09-23 17:46:15 -0700 | [diff] [blame] | 53 | |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 54 | bfa_regs->intr_status = (kva + CT2_HOSTFN_INT_STATUS); |
| 55 | bfa_regs->intr_mask = (kva + CT2_HOSTFN_INTR_MASK); |
Jing Huang | 7725ccf | 2009-09-23 17:46:15 -0700 | [diff] [blame] | 56 | } |
| 57 | |
| 58 | void |
Krishna Gudipati | f5713c5 | 2010-03-05 19:37:09 -0800 | [diff] [blame] | 59 | bfa_hwct_reqq_ack(struct bfa_s *bfa, int reqq) |
| 60 | { |
Krishna Gudipati | a36c61f | 2010-09-15 11:50:55 -0700 | [diff] [blame] | 61 | u32 r32; |
Krishna Gudipati | f5713c5 | 2010-03-05 19:37:09 -0800 | [diff] [blame] | 62 | |
Jing Huang | 5344026 | 2010-10-18 17:12:29 -0700 | [diff] [blame] | 63 | r32 = readl(bfa->iocfc.bfa_regs.cpe_q_ctrl[reqq]); |
| 64 | writel(r32, bfa->iocfc.bfa_regs.cpe_q_ctrl[reqq]); |
Krishna Gudipati | f5713c5 | 2010-03-05 19:37:09 -0800 | [diff] [blame] | 65 | } |
| 66 | |
Krishna Gudipati | ca6e0ea | 2011-07-20 17:00:45 -0700 | [diff] [blame] | 67 | /* |
| 68 | * Actions to respond RME Interrupt for Catapult ASIC: |
| 69 | * - Write 1 to Interrupt Status register (INTx only - done in bfa_intx()) |
| 70 | * - Acknowledge by writing to RME Queue Control register |
| 71 | * - Update CI |
| 72 | */ |
Krishna Gudipati | f5713c5 | 2010-03-05 19:37:09 -0800 | [diff] [blame] | 73 | void |
Krishna Gudipati | ca6e0ea | 2011-07-20 17:00:45 -0700 | [diff] [blame] | 74 | bfa_hwct_rspq_ack(struct bfa_s *bfa, int rspq, u32 ci) |
Jing Huang | 7725ccf | 2009-09-23 17:46:15 -0700 | [diff] [blame] | 75 | { |
| 76 | u32 r32; |
| 77 | |
Jing Huang | 5344026 | 2010-10-18 17:12:29 -0700 | [diff] [blame] | 78 | r32 = readl(bfa->iocfc.bfa_regs.rme_q_ctrl[rspq]); |
| 79 | writel(r32, bfa->iocfc.bfa_regs.rme_q_ctrl[rspq]); |
Krishna Gudipati | ca6e0ea | 2011-07-20 17:00:45 -0700 | [diff] [blame] | 80 | |
| 81 | bfa_rspq_ci(bfa, rspq) = ci; |
| 82 | writel(ci, bfa->iocfc.bfa_regs.rme_q_ci[rspq]); |
| 83 | mmiowb(); |
| 84 | } |
| 85 | |
| 86 | /* |
| 87 | * Actions to respond RME Interrupt for Catapult2 ASIC: |
| 88 | * - Write 1 to Interrupt Status register (INTx only - done in bfa_intx()) |
| 89 | * - Update CI |
| 90 | */ |
| 91 | void |
| 92 | bfa_hwct2_rspq_ack(struct bfa_s *bfa, int rspq, u32 ci) |
| 93 | { |
| 94 | bfa_rspq_ci(bfa, rspq) = ci; |
| 95 | writel(ci, bfa->iocfc.bfa_regs.rme_q_ci[rspq]); |
| 96 | mmiowb(); |
Jing Huang | 7725ccf | 2009-09-23 17:46:15 -0700 | [diff] [blame] | 97 | } |
| 98 | |
| 99 | void |
| 100 | bfa_hwct_msix_getvecs(struct bfa_s *bfa, u32 *msix_vecs_bmap, |
| 101 | u32 *num_vecs, u32 *max_vec_bit) |
| 102 | { |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 103 | *msix_vecs_bmap = (1 << BFI_MSIX_CT_MAX) - 1; |
| 104 | *max_vec_bit = (1 << (BFI_MSIX_CT_MAX - 1)); |
| 105 | *num_vecs = BFI_MSIX_CT_MAX; |
Jing Huang | 7725ccf | 2009-09-23 17:46:15 -0700 | [diff] [blame] | 106 | } |
| 107 | |
Jing Huang | 5fbe25c | 2010-10-18 17:17:23 -0700 | [diff] [blame] | 108 | /* |
Jing Huang | 7725ccf | 2009-09-23 17:46:15 -0700 | [diff] [blame] | 109 | * Setup MSI-X vector for catapult |
| 110 | */ |
| 111 | void |
| 112 | bfa_hwct_msix_init(struct bfa_s *bfa, int nvecs) |
| 113 | { |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 114 | WARN_ON((nvecs != 1) && (nvecs != BFI_MSIX_CT_MAX)); |
Jing Huang | 7725ccf | 2009-09-23 17:46:15 -0700 | [diff] [blame] | 115 | bfa_trc(bfa, nvecs); |
| 116 | |
| 117 | bfa->msix.nvecs = nvecs; |
| 118 | bfa_hwct_msix_uninstall(bfa); |
| 119 | } |
| 120 | |
| 121 | void |
Krishna Gudipati | 775c774 | 2011-06-13 15:52:12 -0700 | [diff] [blame] | 122 | bfa_hwct_msix_ctrl_install(struct bfa_s *bfa) |
| 123 | { |
| 124 | if (bfa->msix.nvecs == 0) |
| 125 | return; |
| 126 | |
| 127 | if (bfa->msix.nvecs == 1) |
| 128 | bfa->msix.handler[BFI_MSIX_LPU_ERR_CT] = bfa_msix_all; |
| 129 | else |
| 130 | bfa->msix.handler[BFI_MSIX_LPU_ERR_CT] = bfa_msix_lpu_err; |
| 131 | } |
| 132 | |
| 133 | void |
| 134 | bfa_hwct_msix_queue_install(struct bfa_s *bfa) |
Jing Huang | 7725ccf | 2009-09-23 17:46:15 -0700 | [diff] [blame] | 135 | { |
| 136 | int i; |
| 137 | |
| 138 | if (bfa->msix.nvecs == 0) |
| 139 | return; |
| 140 | |
| 141 | if (bfa->msix.nvecs == 1) { |
Krishna Gudipati | 775c774 | 2011-06-13 15:52:12 -0700 | [diff] [blame] | 142 | for (i = BFI_MSIX_CPE_QMIN_CT; i < BFI_MSIX_CT_MAX; i++) |
Jing Huang | 7725ccf | 2009-09-23 17:46:15 -0700 | [diff] [blame] | 143 | bfa->msix.handler[i] = bfa_msix_all; |
| 144 | return; |
| 145 | } |
| 146 | |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 147 | for (i = BFI_MSIX_CPE_QMIN_CT; i <= BFI_MSIX_CPE_QMAX_CT; i++) |
Jing Huang | 7725ccf | 2009-09-23 17:46:15 -0700 | [diff] [blame] | 148 | bfa->msix.handler[i] = bfa_msix_reqq; |
| 149 | |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 150 | for (i = BFI_MSIX_RME_QMIN_CT; i <= BFI_MSIX_RME_QMAX_CT; i++) |
Jing Huang | 7725ccf | 2009-09-23 17:46:15 -0700 | [diff] [blame] | 151 | bfa->msix.handler[i] = bfa_msix_rspq; |
Jing Huang | 7725ccf | 2009-09-23 17:46:15 -0700 | [diff] [blame] | 152 | } |
| 153 | |
| 154 | void |
| 155 | bfa_hwct_msix_uninstall(struct bfa_s *bfa) |
| 156 | { |
| 157 | int i; |
| 158 | |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 159 | for (i = 0; i < BFI_MSIX_CT_MAX; i++) |
Jing Huang | 7725ccf | 2009-09-23 17:46:15 -0700 | [diff] [blame] | 160 | bfa->msix.handler[i] = bfa_hwct_msix_dummy; |
| 161 | } |
| 162 | |
Jing Huang | 5fbe25c | 2010-10-18 17:17:23 -0700 | [diff] [blame] | 163 | /* |
Jing Huang | 7725ccf | 2009-09-23 17:46:15 -0700 | [diff] [blame] | 164 | * Enable MSI-X vectors |
| 165 | */ |
| 166 | void |
| 167 | bfa_hwct_isr_mode_set(struct bfa_s *bfa, bfa_boolean_t msix) |
| 168 | { |
| 169 | bfa_trc(bfa, 0); |
Jing Huang | 7725ccf | 2009-09-23 17:46:15 -0700 | [diff] [blame] | 170 | bfa_ioc_isr_mode_set(&bfa->ioc, msix); |
| 171 | } |
| 172 | |
Jing Huang | 36d345a | 2010-07-08 19:57:33 -0700 | [diff] [blame] | 173 | void |
| 174 | bfa_hwct_msix_get_rme_range(struct bfa_s *bfa, u32 *start, u32 *end) |
| 175 | { |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 176 | *start = BFI_MSIX_RME_QMIN_CT; |
| 177 | *end = BFI_MSIX_RME_QMAX_CT; |
Jing Huang | 36d345a | 2010-07-08 19:57:33 -0700 | [diff] [blame] | 178 | } |