Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Linux network driver for Brocade Converged Network Adapter. |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or modify it |
| 5 | * under the terms of the GNU General Public License (GPL) Version 2 as |
| 6 | * published by the Free Software Foundation |
| 7 | * |
| 8 | * This program is distributed in the hope that it will be useful, but |
| 9 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 11 | * General Public License for more details. |
| 12 | */ |
| 13 | /* |
| 14 | * Copyright (c) 2005-2010 Brocade Communications Systems, Inc. |
| 15 | * All rights reserved |
| 16 | * www.brocade.com |
| 17 | */ |
| 18 | |
| 19 | #include "bfa_ioc.h" |
| 20 | #include "cna.h" |
| 21 | #include "bfi.h" |
| 22 | #include "bfi_ctreg.h" |
| 23 | #include "bfa_defs.h" |
| 24 | |
| 25 | /** |
| 26 | * IOC local definitions |
| 27 | */ |
| 28 | |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 29 | /** |
| 30 | * Asic specific macros : see bfa_hw_cb.c and bfa_hw_ct.c for details. |
| 31 | */ |
| 32 | |
| 33 | #define bfa_ioc_firmware_lock(__ioc) \ |
| 34 | ((__ioc)->ioc_hwif->ioc_firmware_lock(__ioc)) |
| 35 | #define bfa_ioc_firmware_unlock(__ioc) \ |
| 36 | ((__ioc)->ioc_hwif->ioc_firmware_unlock(__ioc)) |
| 37 | #define bfa_ioc_reg_init(__ioc) ((__ioc)->ioc_hwif->ioc_reg_init(__ioc)) |
| 38 | #define bfa_ioc_map_port(__ioc) ((__ioc)->ioc_hwif->ioc_map_port(__ioc)) |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 39 | #define bfa_ioc_notify_fail(__ioc) \ |
| 40 | ((__ioc)->ioc_hwif->ioc_notify_fail(__ioc)) |
Rasesh Mody | 79ea6c8 | 2011-04-14 08:05:18 +0000 | [diff] [blame] | 41 | #define bfa_ioc_sync_start(__ioc) \ |
| 42 | ((__ioc)->ioc_hwif->ioc_sync_start(__ioc)) |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 43 | #define bfa_ioc_sync_join(__ioc) \ |
| 44 | ((__ioc)->ioc_hwif->ioc_sync_join(__ioc)) |
| 45 | #define bfa_ioc_sync_leave(__ioc) \ |
| 46 | ((__ioc)->ioc_hwif->ioc_sync_leave(__ioc)) |
| 47 | #define bfa_ioc_sync_ack(__ioc) \ |
| 48 | ((__ioc)->ioc_hwif->ioc_sync_ack(__ioc)) |
| 49 | #define bfa_ioc_sync_complete(__ioc) \ |
| 50 | ((__ioc)->ioc_hwif->ioc_sync_complete(__ioc)) |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 51 | |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 52 | #define bfa_ioc_mbox_cmd_pending(__ioc) \ |
| 53 | (!list_empty(&((__ioc)->mbox_mod.cmd_q)) || \ |
| 54 | readl((__ioc)->ioc_regs.hfn_mbox_cmd)) |
| 55 | |
Rasesh Mody | b7ee31c5 | 2010-10-05 15:46:05 +0000 | [diff] [blame] | 56 | static bool bfa_nw_auto_recover = true; |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 57 | |
| 58 | /* |
| 59 | * forward declarations |
| 60 | */ |
| 61 | static void bfa_ioc_hw_sem_get(struct bfa_ioc *ioc); |
| 62 | static void bfa_ioc_hw_sem_get_cancel(struct bfa_ioc *ioc); |
| 63 | static void bfa_ioc_hwinit(struct bfa_ioc *ioc, bool force); |
| 64 | static void bfa_ioc_send_enable(struct bfa_ioc *ioc); |
| 65 | static void bfa_ioc_send_disable(struct bfa_ioc *ioc); |
| 66 | static void bfa_ioc_send_getattr(struct bfa_ioc *ioc); |
| 67 | static void bfa_ioc_hb_monitor(struct bfa_ioc *ioc); |
| 68 | static void bfa_ioc_hb_stop(struct bfa_ioc *ioc); |
| 69 | static void bfa_ioc_reset(struct bfa_ioc *ioc, bool force); |
| 70 | static void bfa_ioc_mbox_poll(struct bfa_ioc *ioc); |
Rasesh Mody | fdad400 | 2011-07-22 08:07:45 +0000 | [diff] [blame] | 71 | static void bfa_ioc_mbox_flush(struct bfa_ioc *ioc); |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 72 | static void bfa_ioc_recover(struct bfa_ioc *ioc); |
| 73 | static void bfa_ioc_check_attr_wwns(struct bfa_ioc *ioc); |
Rasesh Mody | bd5a92e | 2011-07-22 08:07:42 +0000 | [diff] [blame] | 74 | static void bfa_ioc_event_notify(struct bfa_ioc *, enum bfa_ioc_event); |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 75 | static void bfa_ioc_disable_comp(struct bfa_ioc *ioc); |
| 76 | static void bfa_ioc_lpu_stop(struct bfa_ioc *ioc); |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 77 | static void bfa_ioc_fail_notify(struct bfa_ioc *ioc); |
| 78 | static void bfa_ioc_pf_enabled(struct bfa_ioc *ioc); |
| 79 | static void bfa_ioc_pf_disabled(struct bfa_ioc *ioc); |
| 80 | static void bfa_ioc_pf_initfailed(struct bfa_ioc *ioc); |
| 81 | static void bfa_ioc_pf_failed(struct bfa_ioc *ioc); |
| 82 | static void bfa_ioc_pf_fwmismatch(struct bfa_ioc *ioc); |
Rasesh Mody | 8a89142 | 2010-08-25 23:00:27 -0700 | [diff] [blame] | 83 | static void bfa_ioc_boot(struct bfa_ioc *ioc, u32 boot_type, |
| 84 | u32 boot_param); |
| 85 | static u32 bfa_ioc_smem_pgnum(struct bfa_ioc *ioc, u32 fmaddr); |
Rasesh Mody | 8a89142 | 2010-08-25 23:00:27 -0700 | [diff] [blame] | 86 | static void bfa_ioc_get_adapter_serial_num(struct bfa_ioc *ioc, |
| 87 | char *serial_num); |
| 88 | static void bfa_ioc_get_adapter_fw_ver(struct bfa_ioc *ioc, |
| 89 | char *fw_ver); |
| 90 | static void bfa_ioc_get_pci_chip_rev(struct bfa_ioc *ioc, |
| 91 | char *chip_rev); |
| 92 | static void bfa_ioc_get_adapter_optrom_ver(struct bfa_ioc *ioc, |
| 93 | char *optrom_ver); |
| 94 | static void bfa_ioc_get_adapter_manufacturer(struct bfa_ioc *ioc, |
| 95 | char *manufacturer); |
| 96 | static void bfa_ioc_get_adapter_model(struct bfa_ioc *ioc, char *model); |
| 97 | static u64 bfa_ioc_get_pwwn(struct bfa_ioc *ioc); |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 98 | |
| 99 | /** |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 100 | * IOC state machine definitions/declarations |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 101 | */ |
| 102 | enum ioc_event { |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 103 | IOC_E_RESET = 1, /*!< IOC reset request */ |
| 104 | IOC_E_ENABLE = 2, /*!< IOC enable request */ |
| 105 | IOC_E_DISABLE = 3, /*!< IOC disable request */ |
| 106 | IOC_E_DETACH = 4, /*!< driver detach cleanup */ |
| 107 | IOC_E_ENABLED = 5, /*!< f/w enabled */ |
| 108 | IOC_E_FWRSP_GETATTR = 6, /*!< IOC get attribute response */ |
| 109 | IOC_E_DISABLED = 7, /*!< f/w disabled */ |
| 110 | IOC_E_INITFAILED = 8, /*!< failure notice by iocpf sm */ |
Rasesh Mody | f374b36 | 2011-07-22 08:07:46 +0000 | [diff] [blame^] | 111 | IOC_E_PFFAILED = 9, /*!< failure notice by iocpf sm */ |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 112 | IOC_E_HBFAIL = 10, /*!< heartbeat failure */ |
| 113 | IOC_E_HWERROR = 11, /*!< hardware error interrupt */ |
| 114 | IOC_E_TIMEOUT = 12, /*!< timeout */ |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 115 | }; |
| 116 | |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 117 | bfa_fsm_state_decl(bfa_ioc, uninit, struct bfa_ioc, enum ioc_event); |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 118 | bfa_fsm_state_decl(bfa_ioc, reset, struct bfa_ioc, enum ioc_event); |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 119 | bfa_fsm_state_decl(bfa_ioc, enabling, struct bfa_ioc, enum ioc_event); |
| 120 | bfa_fsm_state_decl(bfa_ioc, getattr, struct bfa_ioc, enum ioc_event); |
| 121 | bfa_fsm_state_decl(bfa_ioc, op, struct bfa_ioc, enum ioc_event); |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 122 | bfa_fsm_state_decl(bfa_ioc, fail_retry, struct bfa_ioc, enum ioc_event); |
| 123 | bfa_fsm_state_decl(bfa_ioc, fail, struct bfa_ioc, enum ioc_event); |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 124 | bfa_fsm_state_decl(bfa_ioc, disabling, struct bfa_ioc, enum ioc_event); |
| 125 | bfa_fsm_state_decl(bfa_ioc, disabled, struct bfa_ioc, enum ioc_event); |
| 126 | |
| 127 | static struct bfa_sm_table ioc_sm_table[] = { |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 128 | {BFA_SM(bfa_ioc_sm_uninit), BFA_IOC_UNINIT}, |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 129 | {BFA_SM(bfa_ioc_sm_reset), BFA_IOC_RESET}, |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 130 | {BFA_SM(bfa_ioc_sm_enabling), BFA_IOC_ENABLING}, |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 131 | {BFA_SM(bfa_ioc_sm_getattr), BFA_IOC_GETATTR}, |
| 132 | {BFA_SM(bfa_ioc_sm_op), BFA_IOC_OPERATIONAL}, |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 133 | {BFA_SM(bfa_ioc_sm_fail_retry), BFA_IOC_INITFAIL}, |
| 134 | {BFA_SM(bfa_ioc_sm_fail), BFA_IOC_FAIL}, |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 135 | {BFA_SM(bfa_ioc_sm_disabling), BFA_IOC_DISABLING}, |
| 136 | {BFA_SM(bfa_ioc_sm_disabled), BFA_IOC_DISABLED}, |
| 137 | }; |
| 138 | |
| 139 | /** |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 140 | * IOCPF state machine definitions/declarations |
| 141 | */ |
| 142 | |
| 143 | /* |
| 144 | * Forward declareations for iocpf state machine |
| 145 | */ |
| 146 | static void bfa_iocpf_enable(struct bfa_ioc *ioc); |
| 147 | static void bfa_iocpf_disable(struct bfa_ioc *ioc); |
| 148 | static void bfa_iocpf_fail(struct bfa_ioc *ioc); |
| 149 | static void bfa_iocpf_initfail(struct bfa_ioc *ioc); |
| 150 | static void bfa_iocpf_getattrfail(struct bfa_ioc *ioc); |
| 151 | static void bfa_iocpf_stop(struct bfa_ioc *ioc); |
| 152 | |
| 153 | /** |
| 154 | * IOCPF state machine events |
| 155 | */ |
| 156 | enum iocpf_event { |
| 157 | IOCPF_E_ENABLE = 1, /*!< IOCPF enable request */ |
| 158 | IOCPF_E_DISABLE = 2, /*!< IOCPF disable request */ |
| 159 | IOCPF_E_STOP = 3, /*!< stop on driver detach */ |
Rasesh Mody | 0120b99 | 2011-07-22 08:07:41 +0000 | [diff] [blame] | 160 | IOCPF_E_FWREADY = 4, /*!< f/w initialization done */ |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 161 | IOCPF_E_FWRSP_ENABLE = 5, /*!< enable f/w response */ |
| 162 | IOCPF_E_FWRSP_DISABLE = 6, /*!< disable f/w response */ |
| 163 | IOCPF_E_FAIL = 7, /*!< failure notice by ioc sm */ |
| 164 | IOCPF_E_INITFAIL = 8, /*!< init fail notice by ioc sm */ |
| 165 | IOCPF_E_GETATTRFAIL = 9, /*!< init fail notice by ioc sm */ |
| 166 | IOCPF_E_SEMLOCKED = 10, /*!< h/w semaphore is locked */ |
| 167 | IOCPF_E_TIMEOUT = 11, /*!< f/w response timeout */ |
| 168 | }; |
| 169 | |
| 170 | /** |
| 171 | * IOCPF states |
| 172 | */ |
| 173 | enum bfa_iocpf_state { |
| 174 | BFA_IOCPF_RESET = 1, /*!< IOC is in reset state */ |
| 175 | BFA_IOCPF_SEMWAIT = 2, /*!< Waiting for IOC h/w semaphore */ |
| 176 | BFA_IOCPF_HWINIT = 3, /*!< IOC h/w is being initialized */ |
| 177 | BFA_IOCPF_READY = 4, /*!< IOCPF is initialized */ |
| 178 | BFA_IOCPF_INITFAIL = 5, /*!< IOCPF failed */ |
| 179 | BFA_IOCPF_FAIL = 6, /*!< IOCPF failed */ |
| 180 | BFA_IOCPF_DISABLING = 7, /*!< IOCPF is being disabled */ |
| 181 | BFA_IOCPF_DISABLED = 8, /*!< IOCPF is disabled */ |
| 182 | BFA_IOCPF_FWMISMATCH = 9, /*!< IOC f/w different from drivers */ |
| 183 | }; |
| 184 | |
| 185 | bfa_fsm_state_decl(bfa_iocpf, reset, struct bfa_iocpf, enum iocpf_event); |
| 186 | bfa_fsm_state_decl(bfa_iocpf, fwcheck, struct bfa_iocpf, enum iocpf_event); |
| 187 | bfa_fsm_state_decl(bfa_iocpf, mismatch, struct bfa_iocpf, enum iocpf_event); |
| 188 | bfa_fsm_state_decl(bfa_iocpf, semwait, struct bfa_iocpf, enum iocpf_event); |
| 189 | bfa_fsm_state_decl(bfa_iocpf, hwinit, struct bfa_iocpf, enum iocpf_event); |
| 190 | bfa_fsm_state_decl(bfa_iocpf, enabling, struct bfa_iocpf, enum iocpf_event); |
| 191 | bfa_fsm_state_decl(bfa_iocpf, ready, struct bfa_iocpf, enum iocpf_event); |
| 192 | bfa_fsm_state_decl(bfa_iocpf, initfail_sync, struct bfa_iocpf, |
| 193 | enum iocpf_event); |
| 194 | bfa_fsm_state_decl(bfa_iocpf, initfail, struct bfa_iocpf, enum iocpf_event); |
| 195 | bfa_fsm_state_decl(bfa_iocpf, fail_sync, struct bfa_iocpf, enum iocpf_event); |
| 196 | bfa_fsm_state_decl(bfa_iocpf, fail, struct bfa_iocpf, enum iocpf_event); |
| 197 | bfa_fsm_state_decl(bfa_iocpf, disabling, struct bfa_iocpf, enum iocpf_event); |
| 198 | bfa_fsm_state_decl(bfa_iocpf, disabling_sync, struct bfa_iocpf, |
| 199 | enum iocpf_event); |
| 200 | bfa_fsm_state_decl(bfa_iocpf, disabled, struct bfa_iocpf, enum iocpf_event); |
| 201 | |
| 202 | static struct bfa_sm_table iocpf_sm_table[] = { |
| 203 | {BFA_SM(bfa_iocpf_sm_reset), BFA_IOCPF_RESET}, |
| 204 | {BFA_SM(bfa_iocpf_sm_fwcheck), BFA_IOCPF_FWMISMATCH}, |
| 205 | {BFA_SM(bfa_iocpf_sm_mismatch), BFA_IOCPF_FWMISMATCH}, |
| 206 | {BFA_SM(bfa_iocpf_sm_semwait), BFA_IOCPF_SEMWAIT}, |
| 207 | {BFA_SM(bfa_iocpf_sm_hwinit), BFA_IOCPF_HWINIT}, |
| 208 | {BFA_SM(bfa_iocpf_sm_enabling), BFA_IOCPF_HWINIT}, |
| 209 | {BFA_SM(bfa_iocpf_sm_ready), BFA_IOCPF_READY}, |
| 210 | {BFA_SM(bfa_iocpf_sm_initfail_sync), BFA_IOCPF_INITFAIL}, |
| 211 | {BFA_SM(bfa_iocpf_sm_initfail), BFA_IOCPF_INITFAIL}, |
| 212 | {BFA_SM(bfa_iocpf_sm_fail_sync), BFA_IOCPF_FAIL}, |
| 213 | {BFA_SM(bfa_iocpf_sm_fail), BFA_IOCPF_FAIL}, |
| 214 | {BFA_SM(bfa_iocpf_sm_disabling), BFA_IOCPF_DISABLING}, |
| 215 | {BFA_SM(bfa_iocpf_sm_disabling_sync), BFA_IOCPF_DISABLING}, |
| 216 | {BFA_SM(bfa_iocpf_sm_disabled), BFA_IOCPF_DISABLED}, |
| 217 | }; |
| 218 | |
| 219 | /** |
| 220 | * IOC State Machine |
| 221 | */ |
| 222 | |
| 223 | /** |
| 224 | * Beginning state. IOC uninit state. |
| 225 | */ |
| 226 | static void |
| 227 | bfa_ioc_sm_uninit_entry(struct bfa_ioc *ioc) |
| 228 | { |
| 229 | } |
| 230 | |
| 231 | /** |
| 232 | * IOC is in uninit state. |
| 233 | */ |
| 234 | static void |
| 235 | bfa_ioc_sm_uninit(struct bfa_ioc *ioc, enum ioc_event event) |
| 236 | { |
| 237 | switch (event) { |
| 238 | case IOC_E_RESET: |
| 239 | bfa_fsm_set_state(ioc, bfa_ioc_sm_reset); |
| 240 | break; |
| 241 | |
| 242 | default: |
Rasesh Mody | ac51f60 | 2011-07-22 08:07:43 +0000 | [diff] [blame] | 243 | bfa_sm_fault(event); |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 244 | } |
| 245 | } |
| 246 | |
| 247 | /** |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 248 | * Reset entry actions -- initialize state machine |
| 249 | */ |
| 250 | static void |
| 251 | bfa_ioc_sm_reset_entry(struct bfa_ioc *ioc) |
| 252 | { |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 253 | bfa_fsm_set_state(&ioc->iocpf, bfa_iocpf_sm_reset); |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 254 | } |
| 255 | |
| 256 | /** |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 257 | * IOC is in reset state. |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 258 | */ |
| 259 | static void |
| 260 | bfa_ioc_sm_reset(struct bfa_ioc *ioc, enum ioc_event event) |
| 261 | { |
| 262 | switch (event) { |
| 263 | case IOC_E_ENABLE: |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 264 | bfa_fsm_set_state(ioc, bfa_ioc_sm_enabling); |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 265 | break; |
| 266 | |
| 267 | case IOC_E_DISABLE: |
| 268 | bfa_ioc_disable_comp(ioc); |
| 269 | break; |
| 270 | |
| 271 | case IOC_E_DETACH: |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 272 | bfa_fsm_set_state(ioc, bfa_ioc_sm_uninit); |
| 273 | break; |
| 274 | |
| 275 | default: |
Rasesh Mody | ac51f60 | 2011-07-22 08:07:43 +0000 | [diff] [blame] | 276 | bfa_sm_fault(event); |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 277 | } |
| 278 | } |
| 279 | |
| 280 | static void |
| 281 | bfa_ioc_sm_enabling_entry(struct bfa_ioc *ioc) |
| 282 | { |
| 283 | bfa_iocpf_enable(ioc); |
| 284 | } |
| 285 | |
| 286 | /** |
| 287 | * Host IOC function is being enabled, awaiting response from firmware. |
| 288 | * Semaphore is acquired. |
| 289 | */ |
| 290 | static void |
| 291 | bfa_ioc_sm_enabling(struct bfa_ioc *ioc, enum ioc_event event) |
| 292 | { |
| 293 | switch (event) { |
| 294 | case IOC_E_ENABLED: |
| 295 | bfa_fsm_set_state(ioc, bfa_ioc_sm_getattr); |
| 296 | break; |
| 297 | |
Rasesh Mody | f374b36 | 2011-07-22 08:07:46 +0000 | [diff] [blame^] | 298 | case IOC_E_PFFAILED: |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 299 | /* !!! fall through !!! */ |
| 300 | case IOC_E_HWERROR: |
| 301 | ioc->cbfn->enable_cbfn(ioc->bfa, BFA_STATUS_IOC_FAILURE); |
| 302 | bfa_fsm_set_state(ioc, bfa_ioc_sm_fail_retry); |
Rasesh Mody | f374b36 | 2011-07-22 08:07:46 +0000 | [diff] [blame^] | 303 | if (event != IOC_E_PFFAILED) |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 304 | bfa_iocpf_initfail(ioc); |
| 305 | break; |
| 306 | |
| 307 | case IOC_E_DISABLE: |
| 308 | bfa_fsm_set_state(ioc, bfa_ioc_sm_disabling); |
| 309 | break; |
| 310 | |
| 311 | case IOC_E_DETACH: |
| 312 | bfa_fsm_set_state(ioc, bfa_ioc_sm_uninit); |
| 313 | bfa_iocpf_stop(ioc); |
| 314 | break; |
| 315 | |
| 316 | case IOC_E_ENABLE: |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 317 | break; |
| 318 | |
| 319 | default: |
Rasesh Mody | ac51f60 | 2011-07-22 08:07:43 +0000 | [diff] [blame] | 320 | bfa_sm_fault(event); |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 321 | } |
| 322 | } |
| 323 | |
| 324 | /** |
| 325 | * Semaphore should be acquired for version check. |
| 326 | */ |
| 327 | static void |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 328 | bfa_ioc_sm_getattr_entry(struct bfa_ioc *ioc) |
| 329 | { |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 330 | mod_timer(&ioc->ioc_timer, jiffies + |
| 331 | msecs_to_jiffies(BFA_IOC_TOV)); |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 332 | bfa_ioc_send_getattr(ioc); |
| 333 | } |
| 334 | |
| 335 | /** |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 336 | * IOC configuration in progress. Timer is active. |
| 337 | */ |
| 338 | static void |
| 339 | bfa_ioc_sm_getattr(struct bfa_ioc *ioc, enum ioc_event event) |
| 340 | { |
| 341 | switch (event) { |
| 342 | case IOC_E_FWRSP_GETATTR: |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 343 | del_timer(&ioc->ioc_timer); |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 344 | bfa_ioc_check_attr_wwns(ioc); |
| 345 | bfa_fsm_set_state(ioc, bfa_ioc_sm_op); |
| 346 | break; |
| 347 | |
Rasesh Mody | f374b36 | 2011-07-22 08:07:46 +0000 | [diff] [blame^] | 348 | case IOC_E_PFFAILED: |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 349 | case IOC_E_HWERROR: |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 350 | del_timer(&ioc->ioc_timer); |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 351 | /* fall through */ |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 352 | case IOC_E_TIMEOUT: |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 353 | ioc->cbfn->enable_cbfn(ioc->bfa, BFA_STATUS_IOC_FAILURE); |
| 354 | bfa_fsm_set_state(ioc, bfa_ioc_sm_fail_retry); |
Rasesh Mody | f374b36 | 2011-07-22 08:07:46 +0000 | [diff] [blame^] | 355 | if (event != IOC_E_PFFAILED) |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 356 | bfa_iocpf_getattrfail(ioc); |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 357 | break; |
| 358 | |
| 359 | case IOC_E_DISABLE: |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 360 | del_timer(&ioc->ioc_timer); |
| 361 | bfa_fsm_set_state(ioc, bfa_ioc_sm_disabling); |
| 362 | break; |
| 363 | |
| 364 | case IOC_E_ENABLE: |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 365 | break; |
| 366 | |
| 367 | default: |
Rasesh Mody | ac51f60 | 2011-07-22 08:07:43 +0000 | [diff] [blame] | 368 | bfa_sm_fault(event); |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 369 | } |
| 370 | } |
| 371 | |
| 372 | static void |
| 373 | bfa_ioc_sm_op_entry(struct bfa_ioc *ioc) |
| 374 | { |
| 375 | ioc->cbfn->enable_cbfn(ioc->bfa, BFA_STATUS_OK); |
| 376 | bfa_ioc_hb_monitor(ioc); |
| 377 | } |
| 378 | |
| 379 | static void |
| 380 | bfa_ioc_sm_op(struct bfa_ioc *ioc, enum ioc_event event) |
| 381 | { |
| 382 | switch (event) { |
| 383 | case IOC_E_ENABLE: |
| 384 | break; |
| 385 | |
| 386 | case IOC_E_DISABLE: |
| 387 | bfa_ioc_hb_stop(ioc); |
| 388 | bfa_fsm_set_state(ioc, bfa_ioc_sm_disabling); |
| 389 | break; |
| 390 | |
Rasesh Mody | f374b36 | 2011-07-22 08:07:46 +0000 | [diff] [blame^] | 391 | case IOC_E_PFFAILED: |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 392 | case IOC_E_HWERROR: |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 393 | bfa_ioc_hb_stop(ioc); |
| 394 | /* !!! fall through !!! */ |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 395 | case IOC_E_HBFAIL: |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 396 | bfa_ioc_fail_notify(ioc); |
| 397 | if (ioc->iocpf.auto_recover) |
| 398 | bfa_fsm_set_state(ioc, bfa_ioc_sm_fail_retry); |
| 399 | else |
| 400 | bfa_fsm_set_state(ioc, bfa_ioc_sm_fail); |
| 401 | |
Rasesh Mody | f374b36 | 2011-07-22 08:07:46 +0000 | [diff] [blame^] | 402 | if (event != IOC_E_PFFAILED) |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 403 | bfa_iocpf_fail(ioc); |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 404 | break; |
| 405 | |
| 406 | default: |
Rasesh Mody | ac51f60 | 2011-07-22 08:07:43 +0000 | [diff] [blame] | 407 | bfa_sm_fault(event); |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 408 | } |
| 409 | } |
| 410 | |
| 411 | static void |
| 412 | bfa_ioc_sm_disabling_entry(struct bfa_ioc *ioc) |
| 413 | { |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 414 | bfa_iocpf_disable(ioc); |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 415 | } |
| 416 | |
| 417 | /** |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 418 | * IOC is being desabled |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 419 | */ |
| 420 | static void |
| 421 | bfa_ioc_sm_disabling(struct bfa_ioc *ioc, enum ioc_event event) |
| 422 | { |
| 423 | switch (event) { |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 424 | case IOC_E_DISABLED: |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 425 | bfa_fsm_set_state(ioc, bfa_ioc_sm_disabled); |
| 426 | break; |
| 427 | |
| 428 | case IOC_E_HWERROR: |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 429 | /* |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 430 | * No state change. Will move to disabled state |
| 431 | * after iocpf sm completes failure processing and |
| 432 | * moves to disabled state. |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 433 | */ |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 434 | bfa_iocpf_fail(ioc); |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 435 | break; |
| 436 | |
| 437 | default: |
Rasesh Mody | ac51f60 | 2011-07-22 08:07:43 +0000 | [diff] [blame] | 438 | bfa_sm_fault(event); |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 439 | } |
| 440 | } |
| 441 | |
| 442 | /** |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 443 | * IOC desable completion entry. |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 444 | */ |
| 445 | static void |
| 446 | bfa_ioc_sm_disabled_entry(struct bfa_ioc *ioc) |
| 447 | { |
| 448 | bfa_ioc_disable_comp(ioc); |
| 449 | } |
| 450 | |
| 451 | static void |
| 452 | bfa_ioc_sm_disabled(struct bfa_ioc *ioc, enum ioc_event event) |
| 453 | { |
| 454 | switch (event) { |
| 455 | case IOC_E_ENABLE: |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 456 | bfa_fsm_set_state(ioc, bfa_ioc_sm_enabling); |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 457 | break; |
| 458 | |
| 459 | case IOC_E_DISABLE: |
| 460 | ioc->cbfn->disable_cbfn(ioc->bfa); |
| 461 | break; |
| 462 | |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 463 | case IOC_E_DETACH: |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 464 | bfa_fsm_set_state(ioc, bfa_ioc_sm_uninit); |
| 465 | bfa_iocpf_stop(ioc); |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 466 | break; |
| 467 | |
| 468 | default: |
Rasesh Mody | ac51f60 | 2011-07-22 08:07:43 +0000 | [diff] [blame] | 469 | bfa_sm_fault(event); |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 470 | } |
| 471 | } |
| 472 | |
| 473 | static void |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 474 | bfa_ioc_sm_fail_retry_entry(struct bfa_ioc *ioc) |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 475 | { |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 476 | } |
| 477 | |
| 478 | /** |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 479 | * Hardware initialization retry. |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 480 | */ |
| 481 | static void |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 482 | bfa_ioc_sm_fail_retry(struct bfa_ioc *ioc, enum ioc_event event) |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 483 | { |
| 484 | switch (event) { |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 485 | case IOC_E_ENABLED: |
| 486 | bfa_fsm_set_state(ioc, bfa_ioc_sm_getattr); |
| 487 | break; |
| 488 | |
Rasesh Mody | f374b36 | 2011-07-22 08:07:46 +0000 | [diff] [blame^] | 489 | case IOC_E_PFFAILED: |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 490 | case IOC_E_HWERROR: |
| 491 | /** |
| 492 | * Initialization retry failed. |
| 493 | */ |
| 494 | ioc->cbfn->enable_cbfn(ioc->bfa, BFA_STATUS_IOC_FAILURE); |
Rasesh Mody | f374b36 | 2011-07-22 08:07:46 +0000 | [diff] [blame^] | 495 | if (event != IOC_E_PFFAILED) |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 496 | bfa_iocpf_initfail(ioc); |
| 497 | break; |
| 498 | |
| 499 | case IOC_E_INITFAILED: |
| 500 | bfa_fsm_set_state(ioc, bfa_ioc_sm_fail); |
| 501 | break; |
| 502 | |
| 503 | case IOC_E_ENABLE: |
| 504 | break; |
| 505 | |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 506 | case IOC_E_DISABLE: |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 507 | bfa_fsm_set_state(ioc, bfa_ioc_sm_disabling); |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 508 | break; |
| 509 | |
| 510 | case IOC_E_DETACH: |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 511 | bfa_fsm_set_state(ioc, bfa_ioc_sm_uninit); |
| 512 | bfa_iocpf_stop(ioc); |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 513 | break; |
| 514 | |
| 515 | default: |
Rasesh Mody | ac51f60 | 2011-07-22 08:07:43 +0000 | [diff] [blame] | 516 | bfa_sm_fault(event); |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 517 | } |
| 518 | } |
| 519 | |
| 520 | static void |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 521 | bfa_ioc_sm_fail_entry(struct bfa_ioc *ioc) |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 522 | { |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 523 | } |
| 524 | |
| 525 | /** |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 526 | * IOC failure. |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 527 | */ |
| 528 | static void |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 529 | bfa_ioc_sm_fail(struct bfa_ioc *ioc, enum ioc_event event) |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 530 | { |
| 531 | switch (event) { |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 532 | case IOC_E_ENABLE: |
| 533 | ioc->cbfn->enable_cbfn(ioc->bfa, BFA_STATUS_IOC_FAILURE); |
| 534 | break; |
| 535 | |
| 536 | case IOC_E_DISABLE: |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 537 | bfa_fsm_set_state(ioc, bfa_ioc_sm_disabling); |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 538 | break; |
| 539 | |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 540 | case IOC_E_DETACH: |
| 541 | bfa_fsm_set_state(ioc, bfa_ioc_sm_uninit); |
| 542 | bfa_iocpf_stop(ioc); |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 543 | break; |
| 544 | |
| 545 | case IOC_E_HWERROR: |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 546 | /* HB failure notification, ignore. */ |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 547 | break; |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 548 | |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 549 | default: |
Rasesh Mody | ac51f60 | 2011-07-22 08:07:43 +0000 | [diff] [blame] | 550 | bfa_sm_fault(event); |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 551 | } |
| 552 | } |
| 553 | |
| 554 | /** |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 555 | * IOCPF State Machine |
| 556 | */ |
| 557 | |
| 558 | /** |
| 559 | * Reset entry actions -- initialize state machine |
| 560 | */ |
| 561 | static void |
| 562 | bfa_iocpf_sm_reset_entry(struct bfa_iocpf *iocpf) |
| 563 | { |
| 564 | iocpf->retry_count = 0; |
| 565 | iocpf->auto_recover = bfa_nw_auto_recover; |
| 566 | } |
| 567 | |
| 568 | /** |
| 569 | * Beginning state. IOC is in reset state. |
| 570 | */ |
| 571 | static void |
| 572 | bfa_iocpf_sm_reset(struct bfa_iocpf *iocpf, enum iocpf_event event) |
| 573 | { |
| 574 | switch (event) { |
| 575 | case IOCPF_E_ENABLE: |
| 576 | bfa_fsm_set_state(iocpf, bfa_iocpf_sm_fwcheck); |
| 577 | break; |
| 578 | |
| 579 | case IOCPF_E_STOP: |
| 580 | break; |
| 581 | |
| 582 | default: |
Rasesh Mody | ac51f60 | 2011-07-22 08:07:43 +0000 | [diff] [blame] | 583 | bfa_sm_fault(event); |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 584 | } |
| 585 | } |
| 586 | |
| 587 | /** |
| 588 | * Semaphore should be acquired for version check. |
| 589 | */ |
| 590 | static void |
| 591 | bfa_iocpf_sm_fwcheck_entry(struct bfa_iocpf *iocpf) |
| 592 | { |
| 593 | bfa_ioc_hw_sem_get(iocpf->ioc); |
| 594 | } |
| 595 | |
| 596 | /** |
| 597 | * Awaiting h/w semaphore to continue with version check. |
| 598 | */ |
| 599 | static void |
| 600 | bfa_iocpf_sm_fwcheck(struct bfa_iocpf *iocpf, enum iocpf_event event) |
| 601 | { |
| 602 | struct bfa_ioc *ioc = iocpf->ioc; |
| 603 | |
| 604 | switch (event) { |
| 605 | case IOCPF_E_SEMLOCKED: |
| 606 | if (bfa_ioc_firmware_lock(ioc)) { |
Rasesh Mody | 79ea6c8 | 2011-04-14 08:05:18 +0000 | [diff] [blame] | 607 | if (bfa_ioc_sync_start(ioc)) { |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 608 | iocpf->retry_count = 0; |
| 609 | bfa_ioc_sync_join(ioc); |
| 610 | bfa_fsm_set_state(iocpf, bfa_iocpf_sm_hwinit); |
| 611 | } else { |
| 612 | bfa_ioc_firmware_unlock(ioc); |
| 613 | bfa_nw_ioc_hw_sem_release(ioc); |
| 614 | mod_timer(&ioc->sem_timer, jiffies + |
| 615 | msecs_to_jiffies(BFA_IOC_HWSEM_TOV)); |
| 616 | } |
| 617 | } else { |
| 618 | bfa_nw_ioc_hw_sem_release(ioc); |
| 619 | bfa_fsm_set_state(iocpf, bfa_iocpf_sm_mismatch); |
| 620 | } |
| 621 | break; |
| 622 | |
| 623 | case IOCPF_E_DISABLE: |
| 624 | bfa_ioc_hw_sem_get_cancel(ioc); |
| 625 | bfa_fsm_set_state(iocpf, bfa_iocpf_sm_reset); |
| 626 | bfa_ioc_pf_disabled(ioc); |
| 627 | break; |
| 628 | |
| 629 | case IOCPF_E_STOP: |
| 630 | bfa_ioc_hw_sem_get_cancel(ioc); |
| 631 | bfa_fsm_set_state(iocpf, bfa_iocpf_sm_reset); |
| 632 | break; |
| 633 | |
| 634 | default: |
Rasesh Mody | ac51f60 | 2011-07-22 08:07:43 +0000 | [diff] [blame] | 635 | bfa_sm_fault(event); |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 636 | } |
| 637 | } |
| 638 | |
| 639 | /** |
| 640 | * Notify enable completion callback |
| 641 | */ |
| 642 | static void |
| 643 | bfa_iocpf_sm_mismatch_entry(struct bfa_iocpf *iocpf) |
| 644 | { |
| 645 | /* Call only the first time sm enters fwmismatch state. */ |
| 646 | if (iocpf->retry_count == 0) |
| 647 | bfa_ioc_pf_fwmismatch(iocpf->ioc); |
| 648 | |
| 649 | iocpf->retry_count++; |
| 650 | mod_timer(&(iocpf->ioc)->iocpf_timer, jiffies + |
| 651 | msecs_to_jiffies(BFA_IOC_TOV)); |
| 652 | } |
| 653 | |
| 654 | /** |
| 655 | * Awaiting firmware version match. |
| 656 | */ |
| 657 | static void |
| 658 | bfa_iocpf_sm_mismatch(struct bfa_iocpf *iocpf, enum iocpf_event event) |
| 659 | { |
| 660 | struct bfa_ioc *ioc = iocpf->ioc; |
| 661 | |
| 662 | switch (event) { |
| 663 | case IOCPF_E_TIMEOUT: |
| 664 | bfa_fsm_set_state(iocpf, bfa_iocpf_sm_fwcheck); |
| 665 | break; |
| 666 | |
| 667 | case IOCPF_E_DISABLE: |
| 668 | del_timer(&ioc->iocpf_timer); |
| 669 | bfa_fsm_set_state(iocpf, bfa_iocpf_sm_reset); |
| 670 | bfa_ioc_pf_disabled(ioc); |
| 671 | break; |
| 672 | |
| 673 | case IOCPF_E_STOP: |
| 674 | del_timer(&ioc->iocpf_timer); |
| 675 | bfa_fsm_set_state(iocpf, bfa_iocpf_sm_reset); |
| 676 | break; |
| 677 | |
| 678 | default: |
Rasesh Mody | ac51f60 | 2011-07-22 08:07:43 +0000 | [diff] [blame] | 679 | bfa_sm_fault(event); |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 680 | } |
| 681 | } |
| 682 | |
| 683 | /** |
| 684 | * Request for semaphore. |
| 685 | */ |
| 686 | static void |
| 687 | bfa_iocpf_sm_semwait_entry(struct bfa_iocpf *iocpf) |
| 688 | { |
| 689 | bfa_ioc_hw_sem_get(iocpf->ioc); |
| 690 | } |
| 691 | |
| 692 | /** |
| 693 | * Awaiting semaphore for h/w initialzation. |
| 694 | */ |
| 695 | static void |
| 696 | bfa_iocpf_sm_semwait(struct bfa_iocpf *iocpf, enum iocpf_event event) |
| 697 | { |
| 698 | struct bfa_ioc *ioc = iocpf->ioc; |
| 699 | |
| 700 | switch (event) { |
| 701 | case IOCPF_E_SEMLOCKED: |
| 702 | if (bfa_ioc_sync_complete(ioc)) { |
| 703 | bfa_ioc_sync_join(ioc); |
| 704 | bfa_fsm_set_state(iocpf, bfa_iocpf_sm_hwinit); |
| 705 | } else { |
| 706 | bfa_nw_ioc_hw_sem_release(ioc); |
| 707 | mod_timer(&ioc->sem_timer, jiffies + |
| 708 | msecs_to_jiffies(BFA_IOC_HWSEM_TOV)); |
| 709 | } |
| 710 | break; |
| 711 | |
| 712 | case IOCPF_E_DISABLE: |
| 713 | bfa_ioc_hw_sem_get_cancel(ioc); |
| 714 | bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabling_sync); |
| 715 | break; |
| 716 | |
| 717 | default: |
Rasesh Mody | ac51f60 | 2011-07-22 08:07:43 +0000 | [diff] [blame] | 718 | bfa_sm_fault(event); |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 719 | } |
| 720 | } |
| 721 | |
| 722 | static void |
| 723 | bfa_iocpf_sm_hwinit_entry(struct bfa_iocpf *iocpf) |
| 724 | { |
| 725 | mod_timer(&(iocpf->ioc)->iocpf_timer, jiffies + |
| 726 | msecs_to_jiffies(BFA_IOC_TOV)); |
| 727 | bfa_ioc_reset(iocpf->ioc, 0); |
| 728 | } |
| 729 | |
| 730 | /** |
| 731 | * Hardware is being initialized. Interrupts are enabled. |
| 732 | * Holding hardware semaphore lock. |
| 733 | */ |
| 734 | static void |
| 735 | bfa_iocpf_sm_hwinit(struct bfa_iocpf *iocpf, enum iocpf_event event) |
| 736 | { |
| 737 | struct bfa_ioc *ioc = iocpf->ioc; |
| 738 | |
| 739 | switch (event) { |
| 740 | case IOCPF_E_FWREADY: |
| 741 | del_timer(&ioc->iocpf_timer); |
| 742 | bfa_fsm_set_state(iocpf, bfa_iocpf_sm_enabling); |
| 743 | break; |
| 744 | |
| 745 | case IOCPF_E_INITFAIL: |
| 746 | del_timer(&ioc->iocpf_timer); |
| 747 | /* |
| 748 | * !!! fall through !!! |
| 749 | */ |
| 750 | |
| 751 | case IOCPF_E_TIMEOUT: |
| 752 | bfa_nw_ioc_hw_sem_release(ioc); |
| 753 | if (event == IOCPF_E_TIMEOUT) |
| 754 | bfa_ioc_pf_failed(ioc); |
| 755 | bfa_fsm_set_state(iocpf, bfa_iocpf_sm_initfail_sync); |
| 756 | break; |
| 757 | |
| 758 | case IOCPF_E_DISABLE: |
| 759 | del_timer(&ioc->iocpf_timer); |
| 760 | bfa_ioc_sync_leave(ioc); |
| 761 | bfa_nw_ioc_hw_sem_release(ioc); |
| 762 | bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabled); |
| 763 | break; |
| 764 | |
| 765 | default: |
Rasesh Mody | ac51f60 | 2011-07-22 08:07:43 +0000 | [diff] [blame] | 766 | bfa_sm_fault(event); |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 767 | } |
| 768 | } |
| 769 | |
| 770 | static void |
| 771 | bfa_iocpf_sm_enabling_entry(struct bfa_iocpf *iocpf) |
| 772 | { |
| 773 | mod_timer(&(iocpf->ioc)->iocpf_timer, jiffies + |
| 774 | msecs_to_jiffies(BFA_IOC_TOV)); |
| 775 | bfa_ioc_send_enable(iocpf->ioc); |
| 776 | } |
| 777 | |
| 778 | /** |
| 779 | * Host IOC function is being enabled, awaiting response from firmware. |
| 780 | * Semaphore is acquired. |
| 781 | */ |
| 782 | static void |
| 783 | bfa_iocpf_sm_enabling(struct bfa_iocpf *iocpf, enum iocpf_event event) |
| 784 | { |
| 785 | struct bfa_ioc *ioc = iocpf->ioc; |
| 786 | |
| 787 | switch (event) { |
| 788 | case IOCPF_E_FWRSP_ENABLE: |
| 789 | del_timer(&ioc->iocpf_timer); |
| 790 | bfa_nw_ioc_hw_sem_release(ioc); |
| 791 | bfa_fsm_set_state(iocpf, bfa_iocpf_sm_ready); |
| 792 | break; |
| 793 | |
| 794 | case IOCPF_E_INITFAIL: |
| 795 | del_timer(&ioc->iocpf_timer); |
| 796 | /* |
| 797 | * !!! fall through !!! |
| 798 | */ |
| 799 | case IOCPF_E_TIMEOUT: |
| 800 | bfa_nw_ioc_hw_sem_release(ioc); |
| 801 | if (event == IOCPF_E_TIMEOUT) |
| 802 | bfa_ioc_pf_failed(ioc); |
| 803 | bfa_fsm_set_state(iocpf, bfa_iocpf_sm_initfail_sync); |
| 804 | break; |
| 805 | |
| 806 | case IOCPF_E_DISABLE: |
| 807 | del_timer(&ioc->iocpf_timer); |
| 808 | bfa_nw_ioc_hw_sem_release(ioc); |
| 809 | bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabling); |
| 810 | break; |
| 811 | |
| 812 | case IOCPF_E_FWREADY: |
| 813 | bfa_ioc_send_enable(ioc); |
| 814 | break; |
| 815 | |
| 816 | default: |
Rasesh Mody | ac51f60 | 2011-07-22 08:07:43 +0000 | [diff] [blame] | 817 | bfa_sm_fault(event); |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 818 | } |
| 819 | } |
| 820 | |
| 821 | static bool |
| 822 | bfa_nw_ioc_is_operational(struct bfa_ioc *ioc) |
| 823 | { |
| 824 | return bfa_fsm_cmp_state(ioc, bfa_ioc_sm_op); |
| 825 | } |
| 826 | |
| 827 | static void |
| 828 | bfa_iocpf_sm_ready_entry(struct bfa_iocpf *iocpf) |
| 829 | { |
| 830 | bfa_ioc_pf_enabled(iocpf->ioc); |
| 831 | } |
| 832 | |
| 833 | static void |
| 834 | bfa_iocpf_sm_ready(struct bfa_iocpf *iocpf, enum iocpf_event event) |
| 835 | { |
| 836 | struct bfa_ioc *ioc = iocpf->ioc; |
| 837 | |
| 838 | switch (event) { |
| 839 | case IOCPF_E_DISABLE: |
| 840 | bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabling); |
| 841 | break; |
| 842 | |
| 843 | case IOCPF_E_GETATTRFAIL: |
| 844 | bfa_fsm_set_state(iocpf, bfa_iocpf_sm_initfail_sync); |
| 845 | break; |
| 846 | |
| 847 | case IOCPF_E_FAIL: |
| 848 | bfa_fsm_set_state(iocpf, bfa_iocpf_sm_fail_sync); |
| 849 | break; |
| 850 | |
| 851 | case IOCPF_E_FWREADY: |
| 852 | bfa_ioc_pf_failed(ioc); |
| 853 | if (bfa_nw_ioc_is_operational(ioc)) |
| 854 | bfa_fsm_set_state(iocpf, bfa_iocpf_sm_fail_sync); |
| 855 | else |
| 856 | bfa_fsm_set_state(iocpf, bfa_iocpf_sm_initfail_sync); |
| 857 | break; |
| 858 | |
| 859 | default: |
Rasesh Mody | ac51f60 | 2011-07-22 08:07:43 +0000 | [diff] [blame] | 860 | bfa_sm_fault(event); |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 861 | } |
| 862 | } |
| 863 | |
| 864 | static void |
| 865 | bfa_iocpf_sm_disabling_entry(struct bfa_iocpf *iocpf) |
| 866 | { |
| 867 | mod_timer(&(iocpf->ioc)->iocpf_timer, jiffies + |
| 868 | msecs_to_jiffies(BFA_IOC_TOV)); |
| 869 | bfa_ioc_send_disable(iocpf->ioc); |
| 870 | } |
| 871 | |
| 872 | /** |
| 873 | * IOC is being disabled |
| 874 | */ |
| 875 | static void |
| 876 | bfa_iocpf_sm_disabling(struct bfa_iocpf *iocpf, enum iocpf_event event) |
| 877 | { |
| 878 | struct bfa_ioc *ioc = iocpf->ioc; |
| 879 | |
| 880 | switch (event) { |
| 881 | case IOCPF_E_FWRSP_DISABLE: |
| 882 | case IOCPF_E_FWREADY: |
| 883 | del_timer(&ioc->iocpf_timer); |
| 884 | bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabling_sync); |
| 885 | break; |
| 886 | |
| 887 | case IOCPF_E_FAIL: |
| 888 | del_timer(&ioc->iocpf_timer); |
| 889 | /* |
| 890 | * !!! fall through !!! |
| 891 | */ |
| 892 | |
| 893 | case IOCPF_E_TIMEOUT: |
| 894 | writel(BFI_IOC_FAIL, ioc->ioc_regs.ioc_fwstate); |
| 895 | bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabling_sync); |
| 896 | break; |
| 897 | |
| 898 | case IOCPF_E_FWRSP_ENABLE: |
| 899 | break; |
| 900 | |
| 901 | default: |
Rasesh Mody | ac51f60 | 2011-07-22 08:07:43 +0000 | [diff] [blame] | 902 | bfa_sm_fault(event); |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 903 | } |
| 904 | } |
| 905 | |
| 906 | static void |
| 907 | bfa_iocpf_sm_disabling_sync_entry(struct bfa_iocpf *iocpf) |
| 908 | { |
| 909 | bfa_ioc_hw_sem_get(iocpf->ioc); |
| 910 | } |
| 911 | |
| 912 | /** |
| 913 | * IOC hb ack request is being removed. |
| 914 | */ |
| 915 | static void |
| 916 | bfa_iocpf_sm_disabling_sync(struct bfa_iocpf *iocpf, enum iocpf_event event) |
| 917 | { |
| 918 | struct bfa_ioc *ioc = iocpf->ioc; |
| 919 | |
| 920 | switch (event) { |
| 921 | case IOCPF_E_SEMLOCKED: |
| 922 | bfa_ioc_sync_leave(ioc); |
| 923 | bfa_nw_ioc_hw_sem_release(ioc); |
| 924 | bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabled); |
| 925 | break; |
| 926 | |
| 927 | case IOCPF_E_FAIL: |
| 928 | break; |
| 929 | |
| 930 | default: |
Rasesh Mody | ac51f60 | 2011-07-22 08:07:43 +0000 | [diff] [blame] | 931 | bfa_sm_fault(event); |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 932 | } |
| 933 | } |
| 934 | |
| 935 | /** |
| 936 | * IOC disable completion entry. |
| 937 | */ |
| 938 | static void |
| 939 | bfa_iocpf_sm_disabled_entry(struct bfa_iocpf *iocpf) |
| 940 | { |
Rasesh Mody | fdad400 | 2011-07-22 08:07:45 +0000 | [diff] [blame] | 941 | bfa_ioc_mbox_flush(iocpf->ioc); |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 942 | bfa_ioc_pf_disabled(iocpf->ioc); |
| 943 | } |
| 944 | |
| 945 | static void |
| 946 | bfa_iocpf_sm_disabled(struct bfa_iocpf *iocpf, enum iocpf_event event) |
| 947 | { |
| 948 | struct bfa_ioc *ioc = iocpf->ioc; |
| 949 | |
| 950 | switch (event) { |
| 951 | case IOCPF_E_ENABLE: |
| 952 | iocpf->retry_count = 0; |
| 953 | bfa_fsm_set_state(iocpf, bfa_iocpf_sm_semwait); |
| 954 | break; |
| 955 | |
| 956 | case IOCPF_E_STOP: |
| 957 | bfa_ioc_firmware_unlock(ioc); |
| 958 | bfa_fsm_set_state(iocpf, bfa_iocpf_sm_reset); |
| 959 | break; |
| 960 | |
| 961 | default: |
Rasesh Mody | ac51f60 | 2011-07-22 08:07:43 +0000 | [diff] [blame] | 962 | bfa_sm_fault(event); |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 963 | } |
| 964 | } |
| 965 | |
| 966 | static void |
| 967 | bfa_iocpf_sm_initfail_sync_entry(struct bfa_iocpf *iocpf) |
| 968 | { |
| 969 | bfa_ioc_hw_sem_get(iocpf->ioc); |
| 970 | } |
| 971 | |
| 972 | /** |
| 973 | * Hardware initialization failed. |
| 974 | */ |
| 975 | static void |
| 976 | bfa_iocpf_sm_initfail_sync(struct bfa_iocpf *iocpf, enum iocpf_event event) |
| 977 | { |
| 978 | struct bfa_ioc *ioc = iocpf->ioc; |
| 979 | |
| 980 | switch (event) { |
| 981 | case IOCPF_E_SEMLOCKED: |
| 982 | bfa_ioc_notify_fail(ioc); |
| 983 | bfa_ioc_sync_ack(ioc); |
| 984 | iocpf->retry_count++; |
| 985 | if (iocpf->retry_count >= BFA_IOC_HWINIT_MAX) { |
| 986 | bfa_ioc_sync_leave(ioc); |
| 987 | bfa_nw_ioc_hw_sem_release(ioc); |
| 988 | bfa_fsm_set_state(iocpf, bfa_iocpf_sm_initfail); |
| 989 | } else { |
| 990 | if (bfa_ioc_sync_complete(ioc)) |
| 991 | bfa_fsm_set_state(iocpf, bfa_iocpf_sm_hwinit); |
| 992 | else { |
| 993 | bfa_nw_ioc_hw_sem_release(ioc); |
| 994 | bfa_fsm_set_state(iocpf, bfa_iocpf_sm_semwait); |
| 995 | } |
| 996 | } |
| 997 | break; |
| 998 | |
| 999 | case IOCPF_E_DISABLE: |
| 1000 | bfa_ioc_hw_sem_get_cancel(ioc); |
| 1001 | bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabling_sync); |
| 1002 | break; |
| 1003 | |
| 1004 | case IOCPF_E_STOP: |
| 1005 | bfa_ioc_hw_sem_get_cancel(ioc); |
| 1006 | bfa_ioc_firmware_unlock(ioc); |
| 1007 | bfa_fsm_set_state(iocpf, bfa_iocpf_sm_reset); |
| 1008 | break; |
| 1009 | |
| 1010 | case IOCPF_E_FAIL: |
| 1011 | break; |
| 1012 | |
| 1013 | default: |
Rasesh Mody | ac51f60 | 2011-07-22 08:07:43 +0000 | [diff] [blame] | 1014 | bfa_sm_fault(event); |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 1015 | } |
| 1016 | } |
| 1017 | |
| 1018 | static void |
| 1019 | bfa_iocpf_sm_initfail_entry(struct bfa_iocpf *iocpf) |
| 1020 | { |
| 1021 | bfa_ioc_pf_initfailed(iocpf->ioc); |
| 1022 | } |
| 1023 | |
| 1024 | /** |
| 1025 | * Hardware initialization failed. |
| 1026 | */ |
| 1027 | static void |
| 1028 | bfa_iocpf_sm_initfail(struct bfa_iocpf *iocpf, enum iocpf_event event) |
| 1029 | { |
| 1030 | struct bfa_ioc *ioc = iocpf->ioc; |
| 1031 | |
| 1032 | switch (event) { |
| 1033 | case IOCPF_E_DISABLE: |
| 1034 | bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabled); |
| 1035 | break; |
| 1036 | |
| 1037 | case IOCPF_E_STOP: |
| 1038 | bfa_ioc_firmware_unlock(ioc); |
| 1039 | bfa_fsm_set_state(iocpf, bfa_iocpf_sm_reset); |
| 1040 | break; |
| 1041 | |
| 1042 | default: |
Rasesh Mody | ac51f60 | 2011-07-22 08:07:43 +0000 | [diff] [blame] | 1043 | bfa_sm_fault(event); |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 1044 | } |
| 1045 | } |
| 1046 | |
| 1047 | static void |
| 1048 | bfa_iocpf_sm_fail_sync_entry(struct bfa_iocpf *iocpf) |
| 1049 | { |
| 1050 | /** |
| 1051 | * Mark IOC as failed in hardware and stop firmware. |
| 1052 | */ |
| 1053 | bfa_ioc_lpu_stop(iocpf->ioc); |
| 1054 | |
| 1055 | /** |
| 1056 | * Flush any queued up mailbox requests. |
| 1057 | */ |
Rasesh Mody | fdad400 | 2011-07-22 08:07:45 +0000 | [diff] [blame] | 1058 | bfa_ioc_mbox_flush(iocpf->ioc); |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 1059 | bfa_ioc_hw_sem_get(iocpf->ioc); |
| 1060 | } |
| 1061 | |
| 1062 | /** |
| 1063 | * IOC is in failed state. |
| 1064 | */ |
| 1065 | static void |
| 1066 | bfa_iocpf_sm_fail_sync(struct bfa_iocpf *iocpf, enum iocpf_event event) |
| 1067 | { |
| 1068 | struct bfa_ioc *ioc = iocpf->ioc; |
| 1069 | |
| 1070 | switch (event) { |
| 1071 | case IOCPF_E_SEMLOCKED: |
| 1072 | iocpf->retry_count = 0; |
| 1073 | bfa_ioc_sync_ack(ioc); |
| 1074 | bfa_ioc_notify_fail(ioc); |
| 1075 | if (!iocpf->auto_recover) { |
| 1076 | bfa_ioc_sync_leave(ioc); |
| 1077 | bfa_nw_ioc_hw_sem_release(ioc); |
| 1078 | bfa_fsm_set_state(iocpf, bfa_iocpf_sm_fail); |
| 1079 | } else { |
| 1080 | if (bfa_ioc_sync_complete(ioc)) |
| 1081 | bfa_fsm_set_state(iocpf, bfa_iocpf_sm_hwinit); |
| 1082 | else { |
| 1083 | bfa_nw_ioc_hw_sem_release(ioc); |
| 1084 | bfa_fsm_set_state(iocpf, bfa_iocpf_sm_semwait); |
| 1085 | } |
| 1086 | } |
| 1087 | break; |
| 1088 | |
| 1089 | case IOCPF_E_DISABLE: |
| 1090 | bfa_ioc_hw_sem_get_cancel(ioc); |
| 1091 | bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabling_sync); |
| 1092 | break; |
| 1093 | |
| 1094 | case IOCPF_E_FAIL: |
| 1095 | break; |
| 1096 | |
| 1097 | default: |
Rasesh Mody | ac51f60 | 2011-07-22 08:07:43 +0000 | [diff] [blame] | 1098 | bfa_sm_fault(event); |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 1099 | } |
| 1100 | } |
| 1101 | |
| 1102 | static void |
| 1103 | bfa_iocpf_sm_fail_entry(struct bfa_iocpf *iocpf) |
| 1104 | { |
| 1105 | } |
| 1106 | |
| 1107 | /** |
| 1108 | * @brief |
| 1109 | * IOC is in failed state. |
| 1110 | */ |
| 1111 | static void |
| 1112 | bfa_iocpf_sm_fail(struct bfa_iocpf *iocpf, enum iocpf_event event) |
| 1113 | { |
| 1114 | switch (event) { |
| 1115 | case IOCPF_E_DISABLE: |
| 1116 | bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabled); |
| 1117 | break; |
| 1118 | |
| 1119 | default: |
Rasesh Mody | ac51f60 | 2011-07-22 08:07:43 +0000 | [diff] [blame] | 1120 | bfa_sm_fault(event); |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 1121 | } |
| 1122 | } |
| 1123 | |
| 1124 | /** |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1125 | * BFA IOC private functions |
| 1126 | */ |
| 1127 | |
Rasesh Mody | bd5a92e | 2011-07-22 08:07:42 +0000 | [diff] [blame] | 1128 | /** |
| 1129 | * Notify common modules registered for notification. |
| 1130 | */ |
| 1131 | static void |
| 1132 | bfa_ioc_event_notify(struct bfa_ioc *ioc, enum bfa_ioc_event event) |
| 1133 | { |
| 1134 | struct bfa_ioc_notify *notify; |
| 1135 | struct list_head *qe; |
| 1136 | |
| 1137 | list_for_each(qe, &ioc->notify_q) { |
| 1138 | notify = (struct bfa_ioc_notify *)qe; |
| 1139 | notify->cbfn(notify->cbarg, event); |
| 1140 | } |
| 1141 | } |
| 1142 | |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1143 | static void |
| 1144 | bfa_ioc_disable_comp(struct bfa_ioc *ioc) |
| 1145 | { |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1146 | ioc->cbfn->disable_cbfn(ioc->bfa); |
Rasesh Mody | bd5a92e | 2011-07-22 08:07:42 +0000 | [diff] [blame] | 1147 | bfa_ioc_event_notify(ioc, BFA_IOC_E_DISABLED); |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1148 | } |
| 1149 | |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1150 | bool |
Rasesh Mody | 8a89142 | 2010-08-25 23:00:27 -0700 | [diff] [blame] | 1151 | bfa_nw_ioc_sem_get(void __iomem *sem_reg) |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1152 | { |
| 1153 | u32 r32; |
| 1154 | int cnt = 0; |
| 1155 | #define BFA_SEM_SPINCNT 3000 |
| 1156 | |
| 1157 | r32 = readl(sem_reg); |
| 1158 | |
| 1159 | while (r32 && (cnt < BFA_SEM_SPINCNT)) { |
| 1160 | cnt++; |
| 1161 | udelay(2); |
| 1162 | r32 = readl(sem_reg); |
| 1163 | } |
| 1164 | |
| 1165 | if (r32 == 0) |
| 1166 | return true; |
| 1167 | |
| 1168 | BUG_ON(!(cnt < BFA_SEM_SPINCNT)); |
| 1169 | return false; |
| 1170 | } |
| 1171 | |
| 1172 | void |
Rasesh Mody | 8a89142 | 2010-08-25 23:00:27 -0700 | [diff] [blame] | 1173 | bfa_nw_ioc_sem_release(void __iomem *sem_reg) |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1174 | { |
| 1175 | writel(1, sem_reg); |
| 1176 | } |
| 1177 | |
| 1178 | static void |
| 1179 | bfa_ioc_hw_sem_get(struct bfa_ioc *ioc) |
| 1180 | { |
| 1181 | u32 r32; |
| 1182 | |
| 1183 | /** |
| 1184 | * First read to the semaphore register will return 0, subsequent reads |
| 1185 | * will return 1. Semaphore is released by writing 1 to the register |
| 1186 | */ |
| 1187 | r32 = readl(ioc->ioc_regs.ioc_sem_reg); |
| 1188 | if (r32 == 0) { |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 1189 | bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_SEMLOCKED); |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1190 | return; |
| 1191 | } |
| 1192 | |
| 1193 | mod_timer(&ioc->sem_timer, jiffies + |
| 1194 | msecs_to_jiffies(BFA_IOC_HWSEM_TOV)); |
| 1195 | } |
| 1196 | |
| 1197 | void |
Rasesh Mody | 8a89142 | 2010-08-25 23:00:27 -0700 | [diff] [blame] | 1198 | bfa_nw_ioc_hw_sem_release(struct bfa_ioc *ioc) |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1199 | { |
| 1200 | writel(1, ioc->ioc_regs.ioc_sem_reg); |
| 1201 | } |
| 1202 | |
| 1203 | static void |
| 1204 | bfa_ioc_hw_sem_get_cancel(struct bfa_ioc *ioc) |
| 1205 | { |
| 1206 | del_timer(&ioc->sem_timer); |
| 1207 | } |
| 1208 | |
| 1209 | /** |
| 1210 | * @brief |
| 1211 | * Initialize LPU local memory (aka secondary memory / SRAM) |
| 1212 | */ |
| 1213 | static void |
| 1214 | bfa_ioc_lmem_init(struct bfa_ioc *ioc) |
| 1215 | { |
| 1216 | u32 pss_ctl; |
| 1217 | int i; |
| 1218 | #define PSS_LMEM_INIT_TIME 10000 |
| 1219 | |
| 1220 | pss_ctl = readl(ioc->ioc_regs.pss_ctl_reg); |
| 1221 | pss_ctl &= ~__PSS_LMEM_RESET; |
| 1222 | pss_ctl |= __PSS_LMEM_INIT_EN; |
| 1223 | |
| 1224 | /* |
| 1225 | * i2c workaround 12.5khz clock |
| 1226 | */ |
| 1227 | pss_ctl |= __PSS_I2C_CLK_DIV(3UL); |
| 1228 | writel(pss_ctl, ioc->ioc_regs.pss_ctl_reg); |
| 1229 | |
| 1230 | /** |
| 1231 | * wait for memory initialization to be complete |
| 1232 | */ |
| 1233 | i = 0; |
| 1234 | do { |
| 1235 | pss_ctl = readl(ioc->ioc_regs.pss_ctl_reg); |
| 1236 | i++; |
| 1237 | } while (!(pss_ctl & __PSS_LMEM_INIT_DONE) && (i < PSS_LMEM_INIT_TIME)); |
| 1238 | |
| 1239 | /** |
| 1240 | * If memory initialization is not successful, IOC timeout will catch |
| 1241 | * such failures. |
| 1242 | */ |
| 1243 | BUG_ON(!(pss_ctl & __PSS_LMEM_INIT_DONE)); |
| 1244 | |
| 1245 | pss_ctl &= ~(__PSS_LMEM_INIT_DONE | __PSS_LMEM_INIT_EN); |
| 1246 | writel(pss_ctl, ioc->ioc_regs.pss_ctl_reg); |
| 1247 | } |
| 1248 | |
| 1249 | static void |
| 1250 | bfa_ioc_lpu_start(struct bfa_ioc *ioc) |
| 1251 | { |
| 1252 | u32 pss_ctl; |
| 1253 | |
| 1254 | /** |
| 1255 | * Take processor out of reset. |
| 1256 | */ |
| 1257 | pss_ctl = readl(ioc->ioc_regs.pss_ctl_reg); |
| 1258 | pss_ctl &= ~__PSS_LPU0_RESET; |
| 1259 | |
| 1260 | writel(pss_ctl, ioc->ioc_regs.pss_ctl_reg); |
| 1261 | } |
| 1262 | |
| 1263 | static void |
| 1264 | bfa_ioc_lpu_stop(struct bfa_ioc *ioc) |
| 1265 | { |
| 1266 | u32 pss_ctl; |
| 1267 | |
| 1268 | /** |
| 1269 | * Put processors in reset. |
| 1270 | */ |
| 1271 | pss_ctl = readl(ioc->ioc_regs.pss_ctl_reg); |
| 1272 | pss_ctl |= (__PSS_LPU0_RESET | __PSS_LPU1_RESET); |
| 1273 | |
| 1274 | writel(pss_ctl, ioc->ioc_regs.pss_ctl_reg); |
| 1275 | } |
| 1276 | |
| 1277 | /** |
| 1278 | * Get driver and firmware versions. |
| 1279 | */ |
| 1280 | void |
Rasesh Mody | 8a89142 | 2010-08-25 23:00:27 -0700 | [diff] [blame] | 1281 | bfa_nw_ioc_fwver_get(struct bfa_ioc *ioc, struct bfi_ioc_image_hdr *fwhdr) |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1282 | { |
David S. Miller | 5859854 | 2011-04-17 16:51:36 -0700 | [diff] [blame] | 1283 | u32 pgnum; |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1284 | u32 loff = 0; |
| 1285 | int i; |
| 1286 | u32 *fwsig = (u32 *) fwhdr; |
| 1287 | |
| 1288 | pgnum = bfa_ioc_smem_pgnum(ioc, loff); |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1289 | writel(pgnum, ioc->ioc_regs.host_page_num_fn); |
| 1290 | |
| 1291 | for (i = 0; i < (sizeof(struct bfi_ioc_image_hdr) / sizeof(u32)); |
| 1292 | i++) { |
| 1293 | fwsig[i] = |
| 1294 | swab32(readl((loff) + (ioc->ioc_regs.smem_page_start))); |
| 1295 | loff += sizeof(u32); |
| 1296 | } |
| 1297 | } |
| 1298 | |
| 1299 | /** |
| 1300 | * Returns TRUE if same. |
| 1301 | */ |
| 1302 | bool |
Rasesh Mody | 8a89142 | 2010-08-25 23:00:27 -0700 | [diff] [blame] | 1303 | bfa_nw_ioc_fwver_cmp(struct bfa_ioc *ioc, struct bfi_ioc_image_hdr *fwhdr) |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1304 | { |
| 1305 | struct bfi_ioc_image_hdr *drv_fwhdr; |
| 1306 | int i; |
| 1307 | |
| 1308 | drv_fwhdr = (struct bfi_ioc_image_hdr *) |
| 1309 | bfa_cb_image_get_chunk(BFA_IOC_FWIMG_TYPE(ioc), 0); |
| 1310 | |
| 1311 | for (i = 0; i < BFI_IOC_MD5SUM_SZ; i++) { |
| 1312 | if (fwhdr->md5sum[i] != drv_fwhdr->md5sum[i]) |
| 1313 | return false; |
| 1314 | } |
| 1315 | |
| 1316 | return true; |
| 1317 | } |
| 1318 | |
| 1319 | /** |
| 1320 | * Return true if current running version is valid. Firmware signature and |
| 1321 | * execution context (driver/bios) must match. |
| 1322 | */ |
| 1323 | static bool |
Rasesh Mody | 79ea6c8 | 2011-04-14 08:05:18 +0000 | [diff] [blame] | 1324 | bfa_ioc_fwver_valid(struct bfa_ioc *ioc, u32 boot_env) |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1325 | { |
| 1326 | struct bfi_ioc_image_hdr fwhdr, *drv_fwhdr; |
| 1327 | |
Rasesh Mody | 8a89142 | 2010-08-25 23:00:27 -0700 | [diff] [blame] | 1328 | bfa_nw_ioc_fwver_get(ioc, &fwhdr); |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1329 | drv_fwhdr = (struct bfi_ioc_image_hdr *) |
| 1330 | bfa_cb_image_get_chunk(BFA_IOC_FWIMG_TYPE(ioc), 0); |
| 1331 | |
| 1332 | if (fwhdr.signature != drv_fwhdr->signature) |
| 1333 | return false; |
| 1334 | |
Rasesh Mody | 79ea6c8 | 2011-04-14 08:05:18 +0000 | [diff] [blame] | 1335 | if (swab32(fwhdr.param) != boot_env) |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1336 | return false; |
| 1337 | |
Rasesh Mody | 8a89142 | 2010-08-25 23:00:27 -0700 | [diff] [blame] | 1338 | return bfa_nw_ioc_fwver_cmp(ioc, &fwhdr); |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1339 | } |
| 1340 | |
| 1341 | /** |
| 1342 | * Conditionally flush any pending message from firmware at start. |
| 1343 | */ |
| 1344 | static void |
| 1345 | bfa_ioc_msgflush(struct bfa_ioc *ioc) |
| 1346 | { |
| 1347 | u32 r32; |
| 1348 | |
| 1349 | r32 = readl(ioc->ioc_regs.lpu_mbox_cmd); |
| 1350 | if (r32) |
| 1351 | writel(1, ioc->ioc_regs.lpu_mbox_cmd); |
| 1352 | } |
| 1353 | |
| 1354 | /** |
| 1355 | * @img ioc_init_logic.jpg |
| 1356 | */ |
| 1357 | static void |
| 1358 | bfa_ioc_hwinit(struct bfa_ioc *ioc, bool force) |
| 1359 | { |
| 1360 | enum bfi_ioc_state ioc_fwstate; |
| 1361 | bool fwvalid; |
Rasesh Mody | 79ea6c8 | 2011-04-14 08:05:18 +0000 | [diff] [blame] | 1362 | u32 boot_env; |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1363 | |
| 1364 | ioc_fwstate = readl(ioc->ioc_regs.ioc_fwstate); |
| 1365 | |
Rasesh Mody | 79ea6c8 | 2011-04-14 08:05:18 +0000 | [diff] [blame] | 1366 | boot_env = BFI_BOOT_LOADER_OS; |
| 1367 | |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1368 | if (force) |
| 1369 | ioc_fwstate = BFI_IOC_UNINIT; |
| 1370 | |
| 1371 | /** |
| 1372 | * check if firmware is valid |
| 1373 | */ |
| 1374 | fwvalid = (ioc_fwstate == BFI_IOC_UNINIT) ? |
Rasesh Mody | 79ea6c8 | 2011-04-14 08:05:18 +0000 | [diff] [blame] | 1375 | false : bfa_ioc_fwver_valid(ioc, boot_env); |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1376 | |
| 1377 | if (!fwvalid) { |
Rasesh Mody | 79ea6c8 | 2011-04-14 08:05:18 +0000 | [diff] [blame] | 1378 | bfa_ioc_boot(ioc, BFI_BOOT_TYPE_NORMAL, boot_env); |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1379 | return; |
| 1380 | } |
| 1381 | |
| 1382 | /** |
| 1383 | * If hardware initialization is in progress (initialized by other IOC), |
| 1384 | * just wait for an initialization completion interrupt. |
| 1385 | */ |
| 1386 | if (ioc_fwstate == BFI_IOC_INITING) { |
| 1387 | ioc->cbfn->reset_cbfn(ioc->bfa); |
| 1388 | return; |
| 1389 | } |
| 1390 | |
| 1391 | /** |
| 1392 | * If IOC function is disabled and firmware version is same, |
| 1393 | * just re-enable IOC. |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1394 | */ |
Rasesh Mody | 2c7d382 | 2010-12-23 21:45:06 +0000 | [diff] [blame] | 1395 | if (ioc_fwstate == BFI_IOC_DISABLED || ioc_fwstate == BFI_IOC_OP) { |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1396 | /** |
| 1397 | * When using MSI-X any pending firmware ready event should |
| 1398 | * be flushed. Otherwise MSI-X interrupts are not delivered. |
| 1399 | */ |
| 1400 | bfa_ioc_msgflush(ioc); |
| 1401 | ioc->cbfn->reset_cbfn(ioc->bfa); |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 1402 | bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_FWREADY); |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1403 | return; |
| 1404 | } |
| 1405 | |
| 1406 | /** |
| 1407 | * Initialize the h/w for any other states. |
| 1408 | */ |
Rasesh Mody | 79ea6c8 | 2011-04-14 08:05:18 +0000 | [diff] [blame] | 1409 | bfa_ioc_boot(ioc, BFI_BOOT_TYPE_NORMAL, boot_env); |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1410 | } |
| 1411 | |
| 1412 | void |
Rasesh Mody | 8a89142 | 2010-08-25 23:00:27 -0700 | [diff] [blame] | 1413 | bfa_nw_ioc_timeout(void *ioc_arg) |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1414 | { |
| 1415 | struct bfa_ioc *ioc = (struct bfa_ioc *) ioc_arg; |
| 1416 | |
| 1417 | bfa_fsm_send_event(ioc, IOC_E_TIMEOUT); |
| 1418 | } |
| 1419 | |
Rasesh Mody | 8a89142 | 2010-08-25 23:00:27 -0700 | [diff] [blame] | 1420 | static void |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1421 | bfa_ioc_mbox_send(struct bfa_ioc *ioc, void *ioc_msg, int len) |
| 1422 | { |
| 1423 | u32 *msgp = (u32 *) ioc_msg; |
| 1424 | u32 i; |
| 1425 | |
| 1426 | BUG_ON(!(len <= BFI_IOC_MSGLEN_MAX)); |
| 1427 | |
| 1428 | /* |
| 1429 | * first write msg to mailbox registers |
| 1430 | */ |
| 1431 | for (i = 0; i < len / sizeof(u32); i++) |
| 1432 | writel(cpu_to_le32(msgp[i]), |
| 1433 | ioc->ioc_regs.hfn_mbox + i * sizeof(u32)); |
| 1434 | |
| 1435 | for (; i < BFI_IOC_MSGLEN_MAX / sizeof(u32); i++) |
| 1436 | writel(0, ioc->ioc_regs.hfn_mbox + i * sizeof(u32)); |
| 1437 | |
| 1438 | /* |
| 1439 | * write 1 to mailbox CMD to trigger LPU event |
| 1440 | */ |
| 1441 | writel(1, ioc->ioc_regs.hfn_mbox_cmd); |
| 1442 | (void) readl(ioc->ioc_regs.hfn_mbox_cmd); |
| 1443 | } |
| 1444 | |
| 1445 | static void |
| 1446 | bfa_ioc_send_enable(struct bfa_ioc *ioc) |
| 1447 | { |
| 1448 | struct bfi_ioc_ctrl_req enable_req; |
| 1449 | struct timeval tv; |
| 1450 | |
| 1451 | bfi_h2i_set(enable_req.mh, BFI_MC_IOC, BFI_IOC_H2I_ENABLE_REQ, |
| 1452 | bfa_ioc_portid(ioc)); |
| 1453 | enable_req.ioc_class = ioc->ioc_mc; |
| 1454 | do_gettimeofday(&tv); |
| 1455 | enable_req.tv_sec = ntohl(tv.tv_sec); |
| 1456 | bfa_ioc_mbox_send(ioc, &enable_req, sizeof(struct bfi_ioc_ctrl_req)); |
| 1457 | } |
| 1458 | |
| 1459 | static void |
| 1460 | bfa_ioc_send_disable(struct bfa_ioc *ioc) |
| 1461 | { |
| 1462 | struct bfi_ioc_ctrl_req disable_req; |
| 1463 | |
| 1464 | bfi_h2i_set(disable_req.mh, BFI_MC_IOC, BFI_IOC_H2I_DISABLE_REQ, |
| 1465 | bfa_ioc_portid(ioc)); |
| 1466 | bfa_ioc_mbox_send(ioc, &disable_req, sizeof(struct bfi_ioc_ctrl_req)); |
| 1467 | } |
| 1468 | |
| 1469 | static void |
| 1470 | bfa_ioc_send_getattr(struct bfa_ioc *ioc) |
| 1471 | { |
| 1472 | struct bfi_ioc_getattr_req attr_req; |
| 1473 | |
| 1474 | bfi_h2i_set(attr_req.mh, BFI_MC_IOC, BFI_IOC_H2I_GETATTR_REQ, |
| 1475 | bfa_ioc_portid(ioc)); |
| 1476 | bfa_dma_be_addr_set(attr_req.attr_addr, ioc->attr_dma.pa); |
| 1477 | bfa_ioc_mbox_send(ioc, &attr_req, sizeof(attr_req)); |
| 1478 | } |
| 1479 | |
| 1480 | void |
Rasesh Mody | 8a89142 | 2010-08-25 23:00:27 -0700 | [diff] [blame] | 1481 | bfa_nw_ioc_hb_check(void *cbarg) |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1482 | { |
| 1483 | struct bfa_ioc *ioc = cbarg; |
| 1484 | u32 hb_count; |
| 1485 | |
| 1486 | hb_count = readl(ioc->ioc_regs.heartbeat); |
| 1487 | if (ioc->hb_count == hb_count) { |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1488 | bfa_ioc_recover(ioc); |
| 1489 | return; |
| 1490 | } else { |
| 1491 | ioc->hb_count = hb_count; |
| 1492 | } |
| 1493 | |
| 1494 | bfa_ioc_mbox_poll(ioc); |
| 1495 | mod_timer(&ioc->hb_timer, jiffies + |
| 1496 | msecs_to_jiffies(BFA_IOC_HB_TOV)); |
| 1497 | } |
| 1498 | |
| 1499 | static void |
| 1500 | bfa_ioc_hb_monitor(struct bfa_ioc *ioc) |
| 1501 | { |
| 1502 | ioc->hb_count = readl(ioc->ioc_regs.heartbeat); |
| 1503 | mod_timer(&ioc->hb_timer, jiffies + |
| 1504 | msecs_to_jiffies(BFA_IOC_HB_TOV)); |
| 1505 | } |
| 1506 | |
| 1507 | static void |
| 1508 | bfa_ioc_hb_stop(struct bfa_ioc *ioc) |
| 1509 | { |
| 1510 | del_timer(&ioc->hb_timer); |
| 1511 | } |
| 1512 | |
| 1513 | /** |
| 1514 | * @brief |
| 1515 | * Initiate a full firmware download. |
| 1516 | */ |
| 1517 | static void |
| 1518 | bfa_ioc_download_fw(struct bfa_ioc *ioc, u32 boot_type, |
Rasesh Mody | 79ea6c8 | 2011-04-14 08:05:18 +0000 | [diff] [blame] | 1519 | u32 boot_env) |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1520 | { |
| 1521 | u32 *fwimg; |
David S. Miller | 5859854 | 2011-04-17 16:51:36 -0700 | [diff] [blame] | 1522 | u32 pgnum; |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1523 | u32 loff = 0; |
| 1524 | u32 chunkno = 0; |
| 1525 | u32 i; |
| 1526 | |
| 1527 | /** |
| 1528 | * Initialize LMEM first before code download |
| 1529 | */ |
| 1530 | bfa_ioc_lmem_init(ioc); |
| 1531 | |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1532 | fwimg = bfa_cb_image_get_chunk(BFA_IOC_FWIMG_TYPE(ioc), chunkno); |
| 1533 | |
| 1534 | pgnum = bfa_ioc_smem_pgnum(ioc, loff); |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1535 | |
| 1536 | writel(pgnum, ioc->ioc_regs.host_page_num_fn); |
| 1537 | |
| 1538 | for (i = 0; i < bfa_cb_image_get_size(BFA_IOC_FWIMG_TYPE(ioc)); i++) { |
| 1539 | if (BFA_IOC_FLASH_CHUNK_NO(i) != chunkno) { |
| 1540 | chunkno = BFA_IOC_FLASH_CHUNK_NO(i); |
| 1541 | fwimg = bfa_cb_image_get_chunk(BFA_IOC_FWIMG_TYPE(ioc), |
| 1542 | BFA_IOC_FLASH_CHUNK_ADDR(chunkno)); |
| 1543 | } |
| 1544 | |
| 1545 | /** |
| 1546 | * write smem |
| 1547 | */ |
| 1548 | writel((swab32(fwimg[BFA_IOC_FLASH_OFFSET_IN_CHUNK(i)])), |
| 1549 | ((ioc->ioc_regs.smem_page_start) + (loff))); |
| 1550 | |
| 1551 | loff += sizeof(u32); |
| 1552 | |
| 1553 | /** |
| 1554 | * handle page offset wrap around |
| 1555 | */ |
| 1556 | loff = PSS_SMEM_PGOFF(loff); |
| 1557 | if (loff == 0) { |
| 1558 | pgnum++; |
| 1559 | writel(pgnum, |
| 1560 | ioc->ioc_regs.host_page_num_fn); |
| 1561 | } |
| 1562 | } |
| 1563 | |
| 1564 | writel(bfa_ioc_smem_pgnum(ioc, 0), |
| 1565 | ioc->ioc_regs.host_page_num_fn); |
| 1566 | |
| 1567 | /* |
| 1568 | * Set boot type and boot param at the end. |
| 1569 | */ |
Rasesh Mody | 79ea6c8 | 2011-04-14 08:05:18 +0000 | [diff] [blame] | 1570 | writel(boot_type, ((ioc->ioc_regs.smem_page_start) |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1571 | + (BFI_BOOT_TYPE_OFF))); |
Rasesh Mody | 79ea6c8 | 2011-04-14 08:05:18 +0000 | [diff] [blame] | 1572 | writel(boot_env, ((ioc->ioc_regs.smem_page_start) |
| 1573 | + (BFI_BOOT_LOADER_OFF))); |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1574 | } |
| 1575 | |
| 1576 | static void |
| 1577 | bfa_ioc_reset(struct bfa_ioc *ioc, bool force) |
| 1578 | { |
| 1579 | bfa_ioc_hwinit(ioc, force); |
| 1580 | } |
| 1581 | |
| 1582 | /** |
| 1583 | * @brief |
| 1584 | * Update BFA configuration from firmware configuration. |
| 1585 | */ |
| 1586 | static void |
| 1587 | bfa_ioc_getattr_reply(struct bfa_ioc *ioc) |
| 1588 | { |
| 1589 | struct bfi_ioc_attr *attr = ioc->attr; |
| 1590 | |
| 1591 | attr->adapter_prop = ntohl(attr->adapter_prop); |
| 1592 | attr->card_type = ntohl(attr->card_type); |
| 1593 | attr->maxfrsize = ntohs(attr->maxfrsize); |
| 1594 | |
| 1595 | bfa_fsm_send_event(ioc, IOC_E_FWRSP_GETATTR); |
| 1596 | } |
| 1597 | |
| 1598 | /** |
| 1599 | * Attach time initialization of mbox logic. |
| 1600 | */ |
| 1601 | static void |
| 1602 | bfa_ioc_mbox_attach(struct bfa_ioc *ioc) |
| 1603 | { |
| 1604 | struct bfa_ioc_mbox_mod *mod = &ioc->mbox_mod; |
| 1605 | int mc; |
| 1606 | |
| 1607 | INIT_LIST_HEAD(&mod->cmd_q); |
| 1608 | for (mc = 0; mc < BFI_MC_MAX; mc++) { |
| 1609 | mod->mbhdlr[mc].cbfn = NULL; |
| 1610 | mod->mbhdlr[mc].cbarg = ioc->bfa; |
| 1611 | } |
| 1612 | } |
| 1613 | |
| 1614 | /** |
| 1615 | * Mbox poll timer -- restarts any pending mailbox requests. |
| 1616 | */ |
| 1617 | static void |
| 1618 | bfa_ioc_mbox_poll(struct bfa_ioc *ioc) |
| 1619 | { |
| 1620 | struct bfa_ioc_mbox_mod *mod = &ioc->mbox_mod; |
| 1621 | struct bfa_mbox_cmd *cmd; |
| 1622 | u32 stat; |
| 1623 | |
| 1624 | /** |
| 1625 | * If no command pending, do nothing |
| 1626 | */ |
| 1627 | if (list_empty(&mod->cmd_q)) |
| 1628 | return; |
| 1629 | |
| 1630 | /** |
| 1631 | * If previous command is not yet fetched by firmware, do nothing |
| 1632 | */ |
| 1633 | stat = readl(ioc->ioc_regs.hfn_mbox_cmd); |
| 1634 | if (stat) |
| 1635 | return; |
| 1636 | |
| 1637 | /** |
| 1638 | * Enqueue command to firmware. |
| 1639 | */ |
| 1640 | bfa_q_deq(&mod->cmd_q, &cmd); |
| 1641 | bfa_ioc_mbox_send(ioc, cmd->msg, sizeof(cmd->msg)); |
| 1642 | } |
| 1643 | |
| 1644 | /** |
| 1645 | * Cleanup any pending requests. |
| 1646 | */ |
| 1647 | static void |
Rasesh Mody | fdad400 | 2011-07-22 08:07:45 +0000 | [diff] [blame] | 1648 | bfa_ioc_mbox_flush(struct bfa_ioc *ioc) |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1649 | { |
| 1650 | struct bfa_ioc_mbox_mod *mod = &ioc->mbox_mod; |
| 1651 | struct bfa_mbox_cmd *cmd; |
| 1652 | |
| 1653 | while (!list_empty(&mod->cmd_q)) |
| 1654 | bfa_q_deq(&mod->cmd_q, &cmd); |
| 1655 | } |
| 1656 | |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 1657 | static void |
| 1658 | bfa_ioc_fail_notify(struct bfa_ioc *ioc) |
| 1659 | { |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 1660 | /** |
| 1661 | * Notify driver and common modules registered for notification. |
| 1662 | */ |
| 1663 | ioc->cbfn->hbfail_cbfn(ioc->bfa); |
Rasesh Mody | bd5a92e | 2011-07-22 08:07:42 +0000 | [diff] [blame] | 1664 | bfa_ioc_event_notify(ioc, BFA_IOC_E_FAILED); |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 1665 | } |
| 1666 | |
| 1667 | static void |
| 1668 | bfa_ioc_pf_enabled(struct bfa_ioc *ioc) |
| 1669 | { |
| 1670 | bfa_fsm_send_event(ioc, IOC_E_ENABLED); |
| 1671 | } |
| 1672 | |
| 1673 | static void |
| 1674 | bfa_ioc_pf_disabled(struct bfa_ioc *ioc) |
| 1675 | { |
| 1676 | bfa_fsm_send_event(ioc, IOC_E_DISABLED); |
| 1677 | } |
| 1678 | |
| 1679 | static void |
| 1680 | bfa_ioc_pf_initfailed(struct bfa_ioc *ioc) |
| 1681 | { |
| 1682 | bfa_fsm_send_event(ioc, IOC_E_INITFAILED); |
| 1683 | } |
| 1684 | |
| 1685 | static void |
| 1686 | bfa_ioc_pf_failed(struct bfa_ioc *ioc) |
| 1687 | { |
Rasesh Mody | f374b36 | 2011-07-22 08:07:46 +0000 | [diff] [blame^] | 1688 | bfa_fsm_send_event(ioc, IOC_E_PFFAILED); |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 1689 | } |
| 1690 | |
| 1691 | static void |
| 1692 | bfa_ioc_pf_fwmismatch(struct bfa_ioc *ioc) |
| 1693 | { |
| 1694 | /** |
| 1695 | * Provide enable completion callback and AEN notification. |
| 1696 | */ |
| 1697 | ioc->cbfn->enable_cbfn(ioc->bfa, BFA_STATUS_IOC_FAILURE); |
| 1698 | } |
| 1699 | |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1700 | /** |
| 1701 | * IOC public |
| 1702 | */ |
Rasesh Mody | 8a89142 | 2010-08-25 23:00:27 -0700 | [diff] [blame] | 1703 | static enum bfa_status |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1704 | bfa_ioc_pll_init(struct bfa_ioc *ioc) |
| 1705 | { |
| 1706 | /* |
| 1707 | * Hold semaphore so that nobody can access the chip during init. |
| 1708 | */ |
Rasesh Mody | 8a89142 | 2010-08-25 23:00:27 -0700 | [diff] [blame] | 1709 | bfa_nw_ioc_sem_get(ioc->ioc_regs.ioc_init_sem_reg); |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1710 | |
| 1711 | bfa_ioc_pll_init_asic(ioc); |
| 1712 | |
| 1713 | ioc->pllinit = true; |
| 1714 | /* |
| 1715 | * release semaphore. |
| 1716 | */ |
Rasesh Mody | 8a89142 | 2010-08-25 23:00:27 -0700 | [diff] [blame] | 1717 | bfa_nw_ioc_sem_release(ioc->ioc_regs.ioc_init_sem_reg); |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1718 | |
| 1719 | return BFA_STATUS_OK; |
| 1720 | } |
| 1721 | |
| 1722 | /** |
| 1723 | * Interface used by diag module to do firmware boot with memory test |
| 1724 | * as the entry vector. |
| 1725 | */ |
Rasesh Mody | 8a89142 | 2010-08-25 23:00:27 -0700 | [diff] [blame] | 1726 | static void |
Rasesh Mody | 79ea6c8 | 2011-04-14 08:05:18 +0000 | [diff] [blame] | 1727 | bfa_ioc_boot(struct bfa_ioc *ioc, u32 boot_type, u32 boot_env) |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1728 | { |
| 1729 | void __iomem *rb; |
| 1730 | |
| 1731 | bfa_ioc_stats(ioc, ioc_boots); |
| 1732 | |
| 1733 | if (bfa_ioc_pll_init(ioc) != BFA_STATUS_OK) |
| 1734 | return; |
| 1735 | |
| 1736 | /** |
| 1737 | * Initialize IOC state of all functions on a chip reset. |
| 1738 | */ |
| 1739 | rb = ioc->pcidev.pci_bar_kva; |
Rasesh Mody | 79ea6c8 | 2011-04-14 08:05:18 +0000 | [diff] [blame] | 1740 | if (boot_type == BFI_BOOT_TYPE_MEMTEST) { |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1741 | writel(BFI_IOC_MEMTEST, (rb + BFA_IOC0_STATE_REG)); |
| 1742 | writel(BFI_IOC_MEMTEST, (rb + BFA_IOC1_STATE_REG)); |
| 1743 | } else { |
| 1744 | writel(BFI_IOC_INITING, (rb + BFA_IOC0_STATE_REG)); |
| 1745 | writel(BFI_IOC_INITING, (rb + BFA_IOC1_STATE_REG)); |
| 1746 | } |
| 1747 | |
| 1748 | bfa_ioc_msgflush(ioc); |
Rasesh Mody | 79ea6c8 | 2011-04-14 08:05:18 +0000 | [diff] [blame] | 1749 | bfa_ioc_download_fw(ioc, boot_type, boot_env); |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1750 | |
| 1751 | /** |
| 1752 | * Enable interrupts just before starting LPU |
| 1753 | */ |
| 1754 | ioc->cbfn->reset_cbfn(ioc->bfa); |
| 1755 | bfa_ioc_lpu_start(ioc); |
| 1756 | } |
| 1757 | |
| 1758 | /** |
| 1759 | * Enable/disable IOC failure auto recovery. |
| 1760 | */ |
| 1761 | void |
Rasesh Mody | 8a89142 | 2010-08-25 23:00:27 -0700 | [diff] [blame] | 1762 | bfa_nw_ioc_auto_recover(bool auto_recover) |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1763 | { |
Rasesh Mody | 8a89142 | 2010-08-25 23:00:27 -0700 | [diff] [blame] | 1764 | bfa_nw_auto_recover = auto_recover; |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1765 | } |
| 1766 | |
Rasesh Mody | 8a89142 | 2010-08-25 23:00:27 -0700 | [diff] [blame] | 1767 | static void |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1768 | bfa_ioc_msgget(struct bfa_ioc *ioc, void *mbmsg) |
| 1769 | { |
| 1770 | u32 *msgp = mbmsg; |
| 1771 | u32 r32; |
| 1772 | int i; |
| 1773 | |
| 1774 | /** |
| 1775 | * read the MBOX msg |
| 1776 | */ |
| 1777 | for (i = 0; i < (sizeof(union bfi_ioc_i2h_msg_u) / sizeof(u32)); |
| 1778 | i++) { |
| 1779 | r32 = readl(ioc->ioc_regs.lpu_mbox + |
| 1780 | i * sizeof(u32)); |
| 1781 | msgp[i] = htonl(r32); |
| 1782 | } |
| 1783 | |
| 1784 | /** |
| 1785 | * turn off mailbox interrupt by clearing mailbox status |
| 1786 | */ |
| 1787 | writel(1, ioc->ioc_regs.lpu_mbox_cmd); |
| 1788 | readl(ioc->ioc_regs.lpu_mbox_cmd); |
| 1789 | } |
| 1790 | |
Rasesh Mody | 8a89142 | 2010-08-25 23:00:27 -0700 | [diff] [blame] | 1791 | static void |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1792 | bfa_ioc_isr(struct bfa_ioc *ioc, struct bfi_mbmsg *m) |
| 1793 | { |
| 1794 | union bfi_ioc_i2h_msg_u *msg; |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 1795 | struct bfa_iocpf *iocpf = &ioc->iocpf; |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1796 | |
| 1797 | msg = (union bfi_ioc_i2h_msg_u *) m; |
| 1798 | |
| 1799 | bfa_ioc_stats(ioc, ioc_isrs); |
| 1800 | |
| 1801 | switch (msg->mh.msg_id) { |
| 1802 | case BFI_IOC_I2H_HBEAT: |
| 1803 | break; |
| 1804 | |
| 1805 | case BFI_IOC_I2H_READY_EVENT: |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 1806 | bfa_fsm_send_event(iocpf, IOCPF_E_FWREADY); |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1807 | break; |
| 1808 | |
| 1809 | case BFI_IOC_I2H_ENABLE_REPLY: |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 1810 | bfa_fsm_send_event(iocpf, IOCPF_E_FWRSP_ENABLE); |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1811 | break; |
| 1812 | |
| 1813 | case BFI_IOC_I2H_DISABLE_REPLY: |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 1814 | bfa_fsm_send_event(iocpf, IOCPF_E_FWRSP_DISABLE); |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1815 | break; |
| 1816 | |
| 1817 | case BFI_IOC_I2H_GETATTR_REPLY: |
| 1818 | bfa_ioc_getattr_reply(ioc); |
| 1819 | break; |
| 1820 | |
| 1821 | default: |
| 1822 | BUG_ON(1); |
| 1823 | } |
| 1824 | } |
| 1825 | |
| 1826 | /** |
| 1827 | * IOC attach time initialization and setup. |
| 1828 | * |
| 1829 | * @param[in] ioc memory for IOC |
| 1830 | * @param[in] bfa driver instance structure |
| 1831 | */ |
| 1832 | void |
Rasesh Mody | 8a89142 | 2010-08-25 23:00:27 -0700 | [diff] [blame] | 1833 | bfa_nw_ioc_attach(struct bfa_ioc *ioc, void *bfa, struct bfa_ioc_cbfn *cbfn) |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1834 | { |
| 1835 | ioc->bfa = bfa; |
| 1836 | ioc->cbfn = cbfn; |
| 1837 | ioc->fcmode = false; |
| 1838 | ioc->pllinit = false; |
| 1839 | ioc->dbg_fwsave_once = true; |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 1840 | ioc->iocpf.ioc = ioc; |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1841 | |
| 1842 | bfa_ioc_mbox_attach(ioc); |
Rasesh Mody | bd5a92e | 2011-07-22 08:07:42 +0000 | [diff] [blame] | 1843 | INIT_LIST_HEAD(&ioc->notify_q); |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1844 | |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 1845 | bfa_fsm_set_state(ioc, bfa_ioc_sm_uninit); |
| 1846 | bfa_fsm_send_event(ioc, IOC_E_RESET); |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1847 | } |
| 1848 | |
| 1849 | /** |
| 1850 | * Driver detach time IOC cleanup. |
| 1851 | */ |
| 1852 | void |
Rasesh Mody | 8a89142 | 2010-08-25 23:00:27 -0700 | [diff] [blame] | 1853 | bfa_nw_ioc_detach(struct bfa_ioc *ioc) |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1854 | { |
| 1855 | bfa_fsm_send_event(ioc, IOC_E_DETACH); |
| 1856 | } |
| 1857 | |
| 1858 | /** |
| 1859 | * Setup IOC PCI properties. |
| 1860 | * |
| 1861 | * @param[in] pcidev PCI device information for this IOC |
| 1862 | */ |
| 1863 | void |
Rasesh Mody | 8a89142 | 2010-08-25 23:00:27 -0700 | [diff] [blame] | 1864 | bfa_nw_ioc_pci_init(struct bfa_ioc *ioc, struct bfa_pcidev *pcidev, |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1865 | enum bfi_mclass mc) |
| 1866 | { |
| 1867 | ioc->ioc_mc = mc; |
| 1868 | ioc->pcidev = *pcidev; |
| 1869 | ioc->ctdev = bfa_asic_id_ct(ioc->pcidev.device_id); |
| 1870 | ioc->cna = ioc->ctdev && !ioc->fcmode; |
| 1871 | |
Rasesh Mody | 8a89142 | 2010-08-25 23:00:27 -0700 | [diff] [blame] | 1872 | bfa_nw_ioc_set_ct_hwif(ioc); |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1873 | |
| 1874 | bfa_ioc_map_port(ioc); |
| 1875 | bfa_ioc_reg_init(ioc); |
| 1876 | } |
| 1877 | |
| 1878 | /** |
| 1879 | * Initialize IOC dma memory |
| 1880 | * |
| 1881 | * @param[in] dm_kva kernel virtual address of IOC dma memory |
| 1882 | * @param[in] dm_pa physical address of IOC dma memory |
| 1883 | */ |
| 1884 | void |
Rasesh Mody | 8a89142 | 2010-08-25 23:00:27 -0700 | [diff] [blame] | 1885 | bfa_nw_ioc_mem_claim(struct bfa_ioc *ioc, u8 *dm_kva, u64 dm_pa) |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1886 | { |
| 1887 | /** |
| 1888 | * dma memory for firmware attribute |
| 1889 | */ |
| 1890 | ioc->attr_dma.kva = dm_kva; |
| 1891 | ioc->attr_dma.pa = dm_pa; |
| 1892 | ioc->attr = (struct bfi_ioc_attr *) dm_kva; |
| 1893 | } |
| 1894 | |
| 1895 | /** |
| 1896 | * Return size of dma memory required. |
| 1897 | */ |
| 1898 | u32 |
Rasesh Mody | 8a89142 | 2010-08-25 23:00:27 -0700 | [diff] [blame] | 1899 | bfa_nw_ioc_meminfo(void) |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1900 | { |
| 1901 | return roundup(sizeof(struct bfi_ioc_attr), BFA_DMA_ALIGN_SZ); |
| 1902 | } |
| 1903 | |
| 1904 | void |
Rasesh Mody | 8a89142 | 2010-08-25 23:00:27 -0700 | [diff] [blame] | 1905 | bfa_nw_ioc_enable(struct bfa_ioc *ioc) |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1906 | { |
| 1907 | bfa_ioc_stats(ioc, ioc_enables); |
| 1908 | ioc->dbg_fwsave_once = true; |
| 1909 | |
| 1910 | bfa_fsm_send_event(ioc, IOC_E_ENABLE); |
| 1911 | } |
| 1912 | |
| 1913 | void |
Rasesh Mody | 8a89142 | 2010-08-25 23:00:27 -0700 | [diff] [blame] | 1914 | bfa_nw_ioc_disable(struct bfa_ioc *ioc) |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1915 | { |
| 1916 | bfa_ioc_stats(ioc, ioc_disables); |
| 1917 | bfa_fsm_send_event(ioc, IOC_E_DISABLE); |
| 1918 | } |
| 1919 | |
Rasesh Mody | 8a89142 | 2010-08-25 23:00:27 -0700 | [diff] [blame] | 1920 | static u32 |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1921 | bfa_ioc_smem_pgnum(struct bfa_ioc *ioc, u32 fmaddr) |
| 1922 | { |
| 1923 | return PSS_SMEM_PGNUM(ioc->ioc_regs.smem_pg0, fmaddr); |
| 1924 | } |
| 1925 | |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1926 | /** |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1927 | * Register mailbox message handler function, to be called by common modules |
| 1928 | */ |
| 1929 | void |
Rasesh Mody | 8a89142 | 2010-08-25 23:00:27 -0700 | [diff] [blame] | 1930 | bfa_nw_ioc_mbox_regisr(struct bfa_ioc *ioc, enum bfi_mclass mc, |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1931 | bfa_ioc_mbox_mcfunc_t cbfn, void *cbarg) |
| 1932 | { |
| 1933 | struct bfa_ioc_mbox_mod *mod = &ioc->mbox_mod; |
| 1934 | |
| 1935 | mod->mbhdlr[mc].cbfn = cbfn; |
| 1936 | mod->mbhdlr[mc].cbarg = cbarg; |
| 1937 | } |
| 1938 | |
| 1939 | /** |
| 1940 | * Queue a mailbox command request to firmware. Waits if mailbox is busy. |
| 1941 | * Responsibility of caller to serialize |
| 1942 | * |
| 1943 | * @param[in] ioc IOC instance |
| 1944 | * @param[i] cmd Mailbox command |
| 1945 | */ |
| 1946 | void |
Rasesh Mody | 8a89142 | 2010-08-25 23:00:27 -0700 | [diff] [blame] | 1947 | bfa_nw_ioc_mbox_queue(struct bfa_ioc *ioc, struct bfa_mbox_cmd *cmd) |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1948 | { |
| 1949 | struct bfa_ioc_mbox_mod *mod = &ioc->mbox_mod; |
| 1950 | u32 stat; |
| 1951 | |
| 1952 | /** |
| 1953 | * If a previous command is pending, queue new command |
| 1954 | */ |
| 1955 | if (!list_empty(&mod->cmd_q)) { |
| 1956 | list_add_tail(&cmd->qe, &mod->cmd_q); |
| 1957 | return; |
| 1958 | } |
| 1959 | |
| 1960 | /** |
| 1961 | * If mailbox is busy, queue command for poll timer |
| 1962 | */ |
| 1963 | stat = readl(ioc->ioc_regs.hfn_mbox_cmd); |
| 1964 | if (stat) { |
| 1965 | list_add_tail(&cmd->qe, &mod->cmd_q); |
| 1966 | return; |
| 1967 | } |
| 1968 | |
| 1969 | /** |
| 1970 | * mailbox is free -- queue command to firmware |
| 1971 | */ |
| 1972 | bfa_ioc_mbox_send(ioc, cmd->msg, sizeof(cmd->msg)); |
Rasesh Mody | bd5a92e | 2011-07-22 08:07:42 +0000 | [diff] [blame] | 1973 | |
| 1974 | return; |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1975 | } |
| 1976 | |
| 1977 | /** |
| 1978 | * Handle mailbox interrupts |
| 1979 | */ |
| 1980 | void |
Rasesh Mody | 8a89142 | 2010-08-25 23:00:27 -0700 | [diff] [blame] | 1981 | bfa_nw_ioc_mbox_isr(struct bfa_ioc *ioc) |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1982 | { |
| 1983 | struct bfa_ioc_mbox_mod *mod = &ioc->mbox_mod; |
| 1984 | struct bfi_mbmsg m; |
| 1985 | int mc; |
| 1986 | |
| 1987 | bfa_ioc_msgget(ioc, &m); |
| 1988 | |
| 1989 | /** |
| 1990 | * Treat IOC message class as special. |
| 1991 | */ |
| 1992 | mc = m.mh.msg_class; |
| 1993 | if (mc == BFI_MC_IOC) { |
| 1994 | bfa_ioc_isr(ioc, &m); |
| 1995 | return; |
| 1996 | } |
| 1997 | |
Dan Carpenter | 0746556 | 2010-09-19 11:25:54 -0700 | [diff] [blame] | 1998 | if ((mc >= BFI_MC_MAX) || (mod->mbhdlr[mc].cbfn == NULL)) |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 1999 | return; |
| 2000 | |
| 2001 | mod->mbhdlr[mc].cbfn(mod->mbhdlr[mc].cbarg, &m); |
| 2002 | } |
| 2003 | |
| 2004 | void |
Rasesh Mody | 8a89142 | 2010-08-25 23:00:27 -0700 | [diff] [blame] | 2005 | bfa_nw_ioc_error_isr(struct bfa_ioc *ioc) |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 2006 | { |
| 2007 | bfa_fsm_send_event(ioc, IOC_E_HWERROR); |
| 2008 | } |
| 2009 | |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 2010 | /** |
Rasesh Mody | bd5a92e | 2011-07-22 08:07:42 +0000 | [diff] [blame] | 2011 | * return true if IOC is disabled |
| 2012 | */ |
| 2013 | bool |
| 2014 | bfa_nw_ioc_is_disabled(struct bfa_ioc *ioc) |
| 2015 | { |
| 2016 | return bfa_fsm_cmp_state(ioc, bfa_ioc_sm_disabling) || |
| 2017 | bfa_fsm_cmp_state(ioc, bfa_ioc_sm_disabled); |
| 2018 | } |
| 2019 | |
| 2020 | /** |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 2021 | * Add to IOC heartbeat failure notification queue. To be used by common |
| 2022 | * modules such as cee, port, diag. |
| 2023 | */ |
| 2024 | void |
Rasesh Mody | bd5a92e | 2011-07-22 08:07:42 +0000 | [diff] [blame] | 2025 | bfa_nw_ioc_notify_register(struct bfa_ioc *ioc, |
| 2026 | struct bfa_ioc_notify *notify) |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 2027 | { |
Rasesh Mody | bd5a92e | 2011-07-22 08:07:42 +0000 | [diff] [blame] | 2028 | list_add_tail(¬ify->qe, &ioc->notify_q); |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 2029 | } |
| 2030 | |
| 2031 | #define BFA_MFG_NAME "Brocade" |
Rasesh Mody | 8a89142 | 2010-08-25 23:00:27 -0700 | [diff] [blame] | 2032 | static void |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 2033 | bfa_ioc_get_adapter_attr(struct bfa_ioc *ioc, |
| 2034 | struct bfa_adapter_attr *ad_attr) |
| 2035 | { |
| 2036 | struct bfi_ioc_attr *ioc_attr; |
| 2037 | |
| 2038 | ioc_attr = ioc->attr; |
| 2039 | |
| 2040 | bfa_ioc_get_adapter_serial_num(ioc, ad_attr->serial_num); |
| 2041 | bfa_ioc_get_adapter_fw_ver(ioc, ad_attr->fw_ver); |
| 2042 | bfa_ioc_get_adapter_optrom_ver(ioc, ad_attr->optrom_ver); |
| 2043 | bfa_ioc_get_adapter_manufacturer(ioc, ad_attr->manufacturer); |
| 2044 | memcpy(&ad_attr->vpd, &ioc_attr->vpd, |
| 2045 | sizeof(struct bfa_mfg_vpd)); |
| 2046 | |
| 2047 | ad_attr->nports = bfa_ioc_get_nports(ioc); |
| 2048 | ad_attr->max_speed = bfa_ioc_speed_sup(ioc); |
| 2049 | |
| 2050 | bfa_ioc_get_adapter_model(ioc, ad_attr->model); |
| 2051 | /* For now, model descr uses same model string */ |
| 2052 | bfa_ioc_get_adapter_model(ioc, ad_attr->model_descr); |
| 2053 | |
| 2054 | ad_attr->card_type = ioc_attr->card_type; |
| 2055 | ad_attr->is_mezz = bfa_mfg_is_mezz(ioc_attr->card_type); |
| 2056 | |
| 2057 | if (BFI_ADAPTER_IS_SPECIAL(ioc_attr->adapter_prop)) |
| 2058 | ad_attr->prototype = 1; |
| 2059 | else |
| 2060 | ad_attr->prototype = 0; |
| 2061 | |
| 2062 | ad_attr->pwwn = bfa_ioc_get_pwwn(ioc); |
Rasesh Mody | 8a89142 | 2010-08-25 23:00:27 -0700 | [diff] [blame] | 2063 | ad_attr->mac = bfa_nw_ioc_get_mac(ioc); |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 2064 | |
| 2065 | ad_attr->pcie_gen = ioc_attr->pcie_gen; |
| 2066 | ad_attr->pcie_lanes = ioc_attr->pcie_lanes; |
| 2067 | ad_attr->pcie_lanes_orig = ioc_attr->pcie_lanes_orig; |
| 2068 | ad_attr->asic_rev = ioc_attr->asic_rev; |
| 2069 | |
| 2070 | bfa_ioc_get_pci_chip_rev(ioc, ad_attr->hw_ver); |
| 2071 | |
| 2072 | ad_attr->cna_capable = ioc->cna; |
| 2073 | ad_attr->trunk_capable = (ad_attr->nports > 1) && !ioc->cna; |
| 2074 | } |
| 2075 | |
Rasesh Mody | 8a89142 | 2010-08-25 23:00:27 -0700 | [diff] [blame] | 2076 | static enum bfa_ioc_type |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 2077 | bfa_ioc_get_type(struct bfa_ioc *ioc) |
| 2078 | { |
| 2079 | if (!ioc->ctdev || ioc->fcmode) |
| 2080 | return BFA_IOC_TYPE_FC; |
| 2081 | else if (ioc->ioc_mc == BFI_MC_IOCFC) |
| 2082 | return BFA_IOC_TYPE_FCoE; |
| 2083 | else if (ioc->ioc_mc == BFI_MC_LL) |
| 2084 | return BFA_IOC_TYPE_LL; |
| 2085 | else { |
| 2086 | BUG_ON(!(ioc->ioc_mc == BFI_MC_LL)); |
| 2087 | return BFA_IOC_TYPE_LL; |
| 2088 | } |
| 2089 | } |
| 2090 | |
Rasesh Mody | 8a89142 | 2010-08-25 23:00:27 -0700 | [diff] [blame] | 2091 | static void |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 2092 | bfa_ioc_get_adapter_serial_num(struct bfa_ioc *ioc, char *serial_num) |
| 2093 | { |
| 2094 | memset(serial_num, 0, BFA_ADAPTER_SERIAL_NUM_LEN); |
| 2095 | memcpy(serial_num, |
| 2096 | (void *)ioc->attr->brcd_serialnum, |
| 2097 | BFA_ADAPTER_SERIAL_NUM_LEN); |
| 2098 | } |
| 2099 | |
Rasesh Mody | 8a89142 | 2010-08-25 23:00:27 -0700 | [diff] [blame] | 2100 | static void |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 2101 | bfa_ioc_get_adapter_fw_ver(struct bfa_ioc *ioc, char *fw_ver) |
| 2102 | { |
| 2103 | memset(fw_ver, 0, BFA_VERSION_LEN); |
| 2104 | memcpy(fw_ver, ioc->attr->fw_version, BFA_VERSION_LEN); |
| 2105 | } |
| 2106 | |
Rasesh Mody | 8a89142 | 2010-08-25 23:00:27 -0700 | [diff] [blame] | 2107 | static void |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 2108 | bfa_ioc_get_pci_chip_rev(struct bfa_ioc *ioc, char *chip_rev) |
| 2109 | { |
| 2110 | BUG_ON(!(chip_rev)); |
| 2111 | |
| 2112 | memset(chip_rev, 0, BFA_IOC_CHIP_REV_LEN); |
| 2113 | |
| 2114 | chip_rev[0] = 'R'; |
| 2115 | chip_rev[1] = 'e'; |
| 2116 | chip_rev[2] = 'v'; |
| 2117 | chip_rev[3] = '-'; |
| 2118 | chip_rev[4] = ioc->attr->asic_rev; |
| 2119 | chip_rev[5] = '\0'; |
| 2120 | } |
| 2121 | |
Rasesh Mody | 8a89142 | 2010-08-25 23:00:27 -0700 | [diff] [blame] | 2122 | static void |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 2123 | bfa_ioc_get_adapter_optrom_ver(struct bfa_ioc *ioc, char *optrom_ver) |
| 2124 | { |
| 2125 | memset(optrom_ver, 0, BFA_VERSION_LEN); |
| 2126 | memcpy(optrom_ver, ioc->attr->optrom_version, |
| 2127 | BFA_VERSION_LEN); |
| 2128 | } |
| 2129 | |
Rasesh Mody | 8a89142 | 2010-08-25 23:00:27 -0700 | [diff] [blame] | 2130 | static void |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 2131 | bfa_ioc_get_adapter_manufacturer(struct bfa_ioc *ioc, char *manufacturer) |
| 2132 | { |
| 2133 | memset(manufacturer, 0, BFA_ADAPTER_MFG_NAME_LEN); |
| 2134 | memcpy(manufacturer, BFA_MFG_NAME, BFA_ADAPTER_MFG_NAME_LEN); |
| 2135 | } |
| 2136 | |
Rasesh Mody | 8a89142 | 2010-08-25 23:00:27 -0700 | [diff] [blame] | 2137 | static void |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 2138 | bfa_ioc_get_adapter_model(struct bfa_ioc *ioc, char *model) |
| 2139 | { |
| 2140 | struct bfi_ioc_attr *ioc_attr; |
| 2141 | |
| 2142 | BUG_ON(!(model)); |
| 2143 | memset(model, 0, BFA_ADAPTER_MODEL_NAME_LEN); |
| 2144 | |
| 2145 | ioc_attr = ioc->attr; |
| 2146 | |
| 2147 | /** |
| 2148 | * model name |
| 2149 | */ |
| 2150 | snprintf(model, BFA_ADAPTER_MODEL_NAME_LEN, "%s-%u", |
| 2151 | BFA_MFG_NAME, ioc_attr->card_type); |
| 2152 | } |
| 2153 | |
Rasesh Mody | 8a89142 | 2010-08-25 23:00:27 -0700 | [diff] [blame] | 2154 | static enum bfa_ioc_state |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 2155 | bfa_ioc_get_state(struct bfa_ioc *ioc) |
| 2156 | { |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 2157 | enum bfa_iocpf_state iocpf_st; |
| 2158 | enum bfa_ioc_state ioc_st = bfa_sm_to_state(ioc_sm_table, ioc->fsm); |
| 2159 | |
| 2160 | if (ioc_st == BFA_IOC_ENABLING || |
| 2161 | ioc_st == BFA_IOC_FAIL || ioc_st == BFA_IOC_INITFAIL) { |
| 2162 | |
| 2163 | iocpf_st = bfa_sm_to_state(iocpf_sm_table, ioc->iocpf.fsm); |
| 2164 | |
| 2165 | switch (iocpf_st) { |
| 2166 | case BFA_IOCPF_SEMWAIT: |
| 2167 | ioc_st = BFA_IOC_SEMWAIT; |
| 2168 | break; |
| 2169 | |
| 2170 | case BFA_IOCPF_HWINIT: |
| 2171 | ioc_st = BFA_IOC_HWINIT; |
| 2172 | break; |
| 2173 | |
| 2174 | case BFA_IOCPF_FWMISMATCH: |
| 2175 | ioc_st = BFA_IOC_FWMISMATCH; |
| 2176 | break; |
| 2177 | |
| 2178 | case BFA_IOCPF_FAIL: |
| 2179 | ioc_st = BFA_IOC_FAIL; |
| 2180 | break; |
| 2181 | |
| 2182 | case BFA_IOCPF_INITFAIL: |
| 2183 | ioc_st = BFA_IOC_INITFAIL; |
| 2184 | break; |
| 2185 | |
| 2186 | default: |
| 2187 | break; |
| 2188 | } |
| 2189 | } |
| 2190 | return ioc_st; |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 2191 | } |
| 2192 | |
| 2193 | void |
Rasesh Mody | 8a89142 | 2010-08-25 23:00:27 -0700 | [diff] [blame] | 2194 | bfa_nw_ioc_get_attr(struct bfa_ioc *ioc, struct bfa_ioc_attr *ioc_attr) |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 2195 | { |
| 2196 | memset((void *)ioc_attr, 0, sizeof(struct bfa_ioc_attr)); |
| 2197 | |
| 2198 | ioc_attr->state = bfa_ioc_get_state(ioc); |
| 2199 | ioc_attr->port_id = ioc->port_id; |
| 2200 | |
| 2201 | ioc_attr->ioc_type = bfa_ioc_get_type(ioc); |
| 2202 | |
| 2203 | bfa_ioc_get_adapter_attr(ioc, &ioc_attr->adapter_attr); |
| 2204 | |
| 2205 | ioc_attr->pci_attr.device_id = ioc->pcidev.device_id; |
| 2206 | ioc_attr->pci_attr.pcifn = ioc->pcidev.pci_func; |
| 2207 | bfa_ioc_get_pci_chip_rev(ioc, ioc_attr->pci_attr.chip_rev); |
| 2208 | } |
| 2209 | |
| 2210 | /** |
| 2211 | * WWN public |
| 2212 | */ |
Rasesh Mody | 8a89142 | 2010-08-25 23:00:27 -0700 | [diff] [blame] | 2213 | static u64 |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 2214 | bfa_ioc_get_pwwn(struct bfa_ioc *ioc) |
| 2215 | { |
| 2216 | return ioc->attr->pwwn; |
| 2217 | } |
| 2218 | |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 2219 | mac_t |
Rasesh Mody | 8a89142 | 2010-08-25 23:00:27 -0700 | [diff] [blame] | 2220 | bfa_nw_ioc_get_mac(struct bfa_ioc *ioc) |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 2221 | { |
Rasesh Mody | 2c7d382 | 2010-12-23 21:45:06 +0000 | [diff] [blame] | 2222 | return ioc->attr->mac; |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 2223 | } |
| 2224 | |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 2225 | /** |
| 2226 | * Firmware failure detected. Start recovery actions. |
| 2227 | */ |
| 2228 | static void |
| 2229 | bfa_ioc_recover(struct bfa_ioc *ioc) |
| 2230 | { |
Rasesh Mody | 1e58148 | 2011-04-04 08:29:59 +0000 | [diff] [blame] | 2231 | pr_crit("Heart Beat of IOC has failed\n"); |
| 2232 | bfa_ioc_stats(ioc, ioc_hbfails); |
| 2233 | bfa_fsm_send_event(ioc, IOC_E_HBFAIL); |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 2234 | } |
| 2235 | |
| 2236 | static void |
| 2237 | bfa_ioc_check_attr_wwns(struct bfa_ioc *ioc) |
| 2238 | { |
| 2239 | if (bfa_ioc_get_type(ioc) == BFA_IOC_TYPE_LL) |
| 2240 | return; |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 2241 | } |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 2242 | |
Rasesh Mody | 1d32f76 | 2010-12-23 21:45:09 +0000 | [diff] [blame] | 2243 | /** |
| 2244 | * @dg hal_iocpf_pvt BFA IOC PF private functions |
| 2245 | * @{ |
| 2246 | */ |
| 2247 | |
| 2248 | static void |
| 2249 | bfa_iocpf_enable(struct bfa_ioc *ioc) |
| 2250 | { |
| 2251 | bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_ENABLE); |
| 2252 | } |
| 2253 | |
| 2254 | static void |
| 2255 | bfa_iocpf_disable(struct bfa_ioc *ioc) |
| 2256 | { |
| 2257 | bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_DISABLE); |
| 2258 | } |
| 2259 | |
| 2260 | static void |
| 2261 | bfa_iocpf_fail(struct bfa_ioc *ioc) |
| 2262 | { |
| 2263 | bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_FAIL); |
| 2264 | } |
| 2265 | |
| 2266 | static void |
| 2267 | bfa_iocpf_initfail(struct bfa_ioc *ioc) |
| 2268 | { |
| 2269 | bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_INITFAIL); |
| 2270 | } |
| 2271 | |
| 2272 | static void |
| 2273 | bfa_iocpf_getattrfail(struct bfa_ioc *ioc) |
| 2274 | { |
| 2275 | bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_GETATTRFAIL); |
| 2276 | } |
| 2277 | |
| 2278 | static void |
| 2279 | bfa_iocpf_stop(struct bfa_ioc *ioc) |
| 2280 | { |
| 2281 | bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_STOP); |
| 2282 | } |
| 2283 | |
| 2284 | void |
| 2285 | bfa_nw_iocpf_timeout(void *ioc_arg) |
| 2286 | { |
| 2287 | struct bfa_ioc *ioc = (struct bfa_ioc *) ioc_arg; |
| 2288 | |
| 2289 | bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_TIMEOUT); |
| 2290 | } |
| 2291 | |
| 2292 | void |
| 2293 | bfa_nw_iocpf_sem_timeout(void *ioc_arg) |
| 2294 | { |
| 2295 | struct bfa_ioc *ioc = (struct bfa_ioc *) ioc_arg; |
| 2296 | |
| 2297 | bfa_ioc_hw_sem_get(ioc); |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 2298 | } |