bfa_ioc.c 60.5 KB
Newer Older
1
/*
K
Krishna Gudipati 已提交
2
 * Copyright (c) 2005-2010 Brocade Communications Systems, Inc.
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
 * All rights reserved
 * www.brocade.com
 *
 * Linux driver for Brocade Fibre Channel Host Bus Adapter.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License (GPL) Version 2 as
 * published by the Free Software Foundation
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 */

K
Krishna Gudipati 已提交
18 19 20 21 22
#include "bfa_ioc.h"
#include "bfi_ctreg.h"
#include "bfa_defs.h"
#include "bfa_defs_svc.h"
#include "bfad_drv.h"
23

24
BFA_TRC_FILE(CNA, IOC);
25

J
Jing Huang 已提交
26
/*
27 28
 * IOC local definitions
 */
K
Krishna Gudipati 已提交
29 30 31 32 33
#define BFA_IOC_TOV		3000	/* msecs */
#define BFA_IOC_HWSEM_TOV	500	/* msecs */
#define BFA_IOC_HB_TOV		500	/* msecs */
#define BFA_IOC_HWINIT_MAX	2
#define BFA_IOC_TOV_RECOVER	 BFA_IOC_HB_TOV
34 35 36 37 38 39

#define bfa_ioc_timer_start(__ioc)					\
	bfa_timer_begin((__ioc)->timer_mod, &(__ioc)->ioc_timer,	\
			bfa_ioc_timeout, (__ioc), BFA_IOC_TOV)
#define bfa_ioc_timer_stop(__ioc)   bfa_timer_stop(&(__ioc)->ioc_timer)

K
Krishna Gudipati 已提交
40 41 42 43 44
#define bfa_hb_timer_start(__ioc)					\
	bfa_timer_begin((__ioc)->timer_mod, &(__ioc)->hb_timer,		\
			bfa_ioc_hb_check, (__ioc), BFA_IOC_HB_TOV)
#define bfa_hb_timer_stop(__ioc)	bfa_timer_stop(&(__ioc)->hb_timer)

45 46 47 48 49 50 51
#define BFA_DBG_FWTRC_ENTS	(BFI_IOC_TRC_ENTS)
#define BFA_DBG_FWTRC_LEN					\
	(BFA_DBG_FWTRC_ENTS * sizeof(struct bfa_trc_s) +	\
	 (sizeof(struct bfa_trc_mod_s) -			\
	  BFA_TRC_MAX * sizeof(struct bfa_trc_s)))
#define BFA_DBG_FWTRC_OFF(_fn)	(BFI_IOC_TRC_OFF + BFA_DBG_FWTRC_LEN * (_fn))

J
Jing Huang 已提交
52
/*
53 54 55
 * Asic specific macros : see bfa_hw_cb.c and bfa_hw_ct.c for details.
 */

K
Krishna Gudipati 已提交
56
#define bfa_ioc_firmware_lock(__ioc)			\
57
			((__ioc)->ioc_hwif->ioc_firmware_lock(__ioc))
K
Krishna Gudipati 已提交
58
#define bfa_ioc_firmware_unlock(__ioc)			\
59 60 61
			((__ioc)->ioc_hwif->ioc_firmware_unlock(__ioc))
#define bfa_ioc_reg_init(__ioc) ((__ioc)->ioc_hwif->ioc_reg_init(__ioc))
#define bfa_ioc_map_port(__ioc) ((__ioc)->ioc_hwif->ioc_map_port(__ioc))
K
Krishna Gudipati 已提交
62
#define bfa_ioc_notify_hbfail(__ioc)			\
63 64
			((__ioc)->ioc_hwif->ioc_notify_hbfail(__ioc))

K
Krishna Gudipati 已提交
65 66 67 68 69 70 71 72 73 74 75
#ifdef BFA_IOC_IS_UEFI
#define bfa_ioc_is_bios_optrom(__ioc) (0)
#define bfa_ioc_is_uefi(__ioc) BFA_IOC_IS_UEFI
#else
#define bfa_ioc_is_bios_optrom(__ioc)	\
	(bfa_cb_image_get_size(BFA_IOC_FWIMG_TYPE(__ioc)) < BFA_IOC_FWIMG_MINSZ)
#define bfa_ioc_is_uefi(__ioc) (0)
#endif

#define bfa_ioc_mbox_cmd_pending(__ioc)		\
			(!list_empty(&((__ioc)->mbox_mod.cmd_q)) || \
76
			readl((__ioc)->ioc_regs.hfn_mbox_cmd))
K
Krishna Gudipati 已提交
77 78

bfa_boolean_t bfa_auto_recover = BFA_TRUE;
79 80 81 82

/*
 * forward declarations
 */
K
Krishna Gudipati 已提交
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
static void bfa_ioc_hw_sem_get(struct bfa_ioc_s *ioc);
static void bfa_ioc_hw_sem_get_cancel(struct bfa_ioc_s *ioc);
static void bfa_ioc_hwinit(struct bfa_ioc_s *ioc, bfa_boolean_t force);
static void bfa_ioc_timeout(void *ioc);
static void bfa_ioc_send_enable(struct bfa_ioc_s *ioc);
static void bfa_ioc_send_disable(struct bfa_ioc_s *ioc);
static void bfa_ioc_send_getattr(struct bfa_ioc_s *ioc);
static void bfa_ioc_hb_monitor(struct bfa_ioc_s *ioc);
static void bfa_ioc_hb_stop(struct bfa_ioc_s *ioc);
static void bfa_ioc_reset(struct bfa_ioc_s *ioc, bfa_boolean_t force);
static void bfa_ioc_mbox_poll(struct bfa_ioc_s *ioc);
static void bfa_ioc_mbox_hbfail(struct bfa_ioc_s *ioc);
static void bfa_ioc_recover(struct bfa_ioc_s *ioc);
static void bfa_ioc_check_attr_wwns(struct bfa_ioc_s *ioc);
static void bfa_ioc_disable_comp(struct bfa_ioc_s *ioc);
static void bfa_ioc_lpu_stop(struct bfa_ioc_s *ioc);
static void bfa_ioc_pf_enabled(struct bfa_ioc_s *ioc);
static void bfa_ioc_pf_disabled(struct bfa_ioc_s *ioc);
static void bfa_ioc_pf_failed(struct bfa_ioc_s *ioc);
static void bfa_ioc_pf_fwmismatch(struct bfa_ioc_s *ioc);
103

J
Jing Huang 已提交
104
/*
K
Krishna Gudipati 已提交
105
 *  hal_ioc_sm
106 107
 */

J
Jing Huang 已提交
108
/*
K
Krishna Gudipati 已提交
109
 * IOC state machine definitions/declarations
110 111
 */
enum ioc_event {
K
Krishna Gudipati 已提交
112 113 114 115 116 117 118 119 120 121 122
	IOC_E_RESET		= 1,	/*  IOC reset request		*/
	IOC_E_ENABLE		= 2,	/*  IOC enable request		*/
	IOC_E_DISABLE		= 3,	/*  IOC disable request	*/
	IOC_E_DETACH		= 4,	/*  driver detach cleanup	*/
	IOC_E_ENABLED		= 5,	/*  f/w enabled		*/
	IOC_E_FWRSP_GETATTR	= 6,	/*  IOC get attribute response	*/
	IOC_E_DISABLED		= 7,	/*  f/w disabled		*/
	IOC_E_FAILED		= 8,	/*  failure notice by iocpf sm	*/
	IOC_E_HBFAIL		= 9,	/*  heartbeat failure		*/
	IOC_E_HWERROR		= 10,	/*  hardware error interrupt	*/
	IOC_E_TIMEOUT		= 11,	/*  timeout			*/
123 124
};

K
Krishna Gudipati 已提交
125
bfa_fsm_state_decl(bfa_ioc, uninit, struct bfa_ioc_s, enum ioc_event);
126 127 128 129 130
bfa_fsm_state_decl(bfa_ioc, reset, struct bfa_ioc_s, enum ioc_event);
bfa_fsm_state_decl(bfa_ioc, enabling, struct bfa_ioc_s, enum ioc_event);
bfa_fsm_state_decl(bfa_ioc, getattr, struct bfa_ioc_s, enum ioc_event);
bfa_fsm_state_decl(bfa_ioc, op, struct bfa_ioc_s, enum ioc_event);
bfa_fsm_state_decl(bfa_ioc, initfail, struct bfa_ioc_s, enum ioc_event);
K
Krishna Gudipati 已提交
131
bfa_fsm_state_decl(bfa_ioc, fail, struct bfa_ioc_s, enum ioc_event);
132 133 134 135
bfa_fsm_state_decl(bfa_ioc, disabling, struct bfa_ioc_s, enum ioc_event);
bfa_fsm_state_decl(bfa_ioc, disabled, struct bfa_ioc_s, enum ioc_event);

static struct bfa_sm_table_s ioc_sm_table[] = {
K
Krishna Gudipati 已提交
136
	{BFA_SM(bfa_ioc_sm_uninit), BFA_IOC_UNINIT},
137
	{BFA_SM(bfa_ioc_sm_reset), BFA_IOC_RESET},
K
Krishna Gudipati 已提交
138
	{BFA_SM(bfa_ioc_sm_enabling), BFA_IOC_ENABLING},
139 140 141
	{BFA_SM(bfa_ioc_sm_getattr), BFA_IOC_GETATTR},
	{BFA_SM(bfa_ioc_sm_op), BFA_IOC_OPERATIONAL},
	{BFA_SM(bfa_ioc_sm_initfail), BFA_IOC_INITFAIL},
K
Krishna Gudipati 已提交
142
	{BFA_SM(bfa_ioc_sm_fail), BFA_IOC_FAIL},
143 144 145 146
	{BFA_SM(bfa_ioc_sm_disabling), BFA_IOC_DISABLING},
	{BFA_SM(bfa_ioc_sm_disabled), BFA_IOC_DISABLED},
};

J
Jing Huang 已提交
147
/*
K
Krishna Gudipati 已提交
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
 * IOCPF state machine definitions/declarations
 */

#define bfa_iocpf_timer_start(__ioc)					\
	bfa_timer_begin((__ioc)->timer_mod, &(__ioc)->ioc_timer,	\
			bfa_iocpf_timeout, (__ioc), BFA_IOC_TOV)
#define bfa_iocpf_timer_stop(__ioc)	bfa_timer_stop(&(__ioc)->ioc_timer)

#define bfa_iocpf_recovery_timer_start(__ioc)				\
	bfa_timer_begin((__ioc)->timer_mod, &(__ioc)->ioc_timer,	\
			bfa_iocpf_timeout, (__ioc), BFA_IOC_TOV_RECOVER)

#define bfa_sem_timer_start(__ioc)					\
	bfa_timer_begin((__ioc)->timer_mod, &(__ioc)->sem_timer,	\
			bfa_iocpf_sem_timeout, (__ioc), BFA_IOC_HWSEM_TOV)
#define bfa_sem_timer_stop(__ioc)	bfa_timer_stop(&(__ioc)->sem_timer)

/*
 * Forward declareations for iocpf state machine
 */
static void bfa_iocpf_enable(struct bfa_ioc_s *ioc);
static void bfa_iocpf_disable(struct bfa_ioc_s *ioc);
static void bfa_iocpf_fail(struct bfa_ioc_s *ioc);
static void bfa_iocpf_initfail(struct bfa_ioc_s *ioc);
static void bfa_iocpf_getattrfail(struct bfa_ioc_s *ioc);
static void bfa_iocpf_stop(struct bfa_ioc_s *ioc);
static void bfa_iocpf_timeout(void *ioc_arg);
static void bfa_iocpf_sem_timeout(void *ioc_arg);

J
Jing Huang 已提交
177
/*
K
Krishna Gudipati 已提交
178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
 * IOCPF state machine events
 */
enum iocpf_event {
	IOCPF_E_ENABLE		= 1,	/*  IOCPF enable request	*/
	IOCPF_E_DISABLE		= 2,	/*  IOCPF disable request	*/
	IOCPF_E_STOP		= 3,	/*  stop on driver detach	*/
	IOCPF_E_FWREADY		= 4,	/*  f/w initialization done	*/
	IOCPF_E_FWRSP_ENABLE	= 5,	/*  enable f/w response	*/
	IOCPF_E_FWRSP_DISABLE	= 6,	/*  disable f/w response	*/
	IOCPF_E_FAIL		= 7,	/*  failure notice by ioc sm	*/
	IOCPF_E_INITFAIL	= 8,	/*  init fail notice by ioc sm	*/
	IOCPF_E_GETATTRFAIL	= 9,	/*  init fail notice by ioc sm	*/
	IOCPF_E_SEMLOCKED	= 10,	/*  h/w semaphore is locked	*/
	IOCPF_E_TIMEOUT		= 11,	/*  f/w response timeout	*/
};

J
Jing Huang 已提交
194
/*
K
Krishna Gudipati 已提交
195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234
 * IOCPF states
 */
enum bfa_iocpf_state {
	BFA_IOCPF_RESET		= 1,	/*  IOC is in reset state */
	BFA_IOCPF_SEMWAIT	= 2,	/*  Waiting for IOC h/w semaphore */
	BFA_IOCPF_HWINIT	= 3,	/*  IOC h/w is being initialized */
	BFA_IOCPF_READY		= 4,	/*  IOCPF is initialized */
	BFA_IOCPF_INITFAIL	= 5,	/*  IOCPF failed */
	BFA_IOCPF_FAIL		= 6,	/*  IOCPF failed */
	BFA_IOCPF_DISABLING	= 7,	/*  IOCPF is being disabled */
	BFA_IOCPF_DISABLED	= 8,	/*  IOCPF is disabled */
	BFA_IOCPF_FWMISMATCH	= 9,	/*  IOC f/w different from drivers */
};

bfa_fsm_state_decl(bfa_iocpf, reset, struct bfa_iocpf_s, enum iocpf_event);
bfa_fsm_state_decl(bfa_iocpf, fwcheck, struct bfa_iocpf_s, enum iocpf_event);
bfa_fsm_state_decl(bfa_iocpf, mismatch, struct bfa_iocpf_s, enum iocpf_event);
bfa_fsm_state_decl(bfa_iocpf, semwait, struct bfa_iocpf_s, enum iocpf_event);
bfa_fsm_state_decl(bfa_iocpf, hwinit, struct bfa_iocpf_s, enum iocpf_event);
bfa_fsm_state_decl(bfa_iocpf, enabling, struct bfa_iocpf_s, enum iocpf_event);
bfa_fsm_state_decl(bfa_iocpf, ready, struct bfa_iocpf_s, enum iocpf_event);
bfa_fsm_state_decl(bfa_iocpf, initfail, struct bfa_iocpf_s, enum iocpf_event);
bfa_fsm_state_decl(bfa_iocpf, fail, struct bfa_iocpf_s, enum iocpf_event);
bfa_fsm_state_decl(bfa_iocpf, disabling, struct bfa_iocpf_s, enum iocpf_event);
bfa_fsm_state_decl(bfa_iocpf, disabled, struct bfa_iocpf_s, enum iocpf_event);

static struct bfa_sm_table_s iocpf_sm_table[] = {
	{BFA_SM(bfa_iocpf_sm_reset), BFA_IOCPF_RESET},
	{BFA_SM(bfa_iocpf_sm_fwcheck), BFA_IOCPF_FWMISMATCH},
	{BFA_SM(bfa_iocpf_sm_mismatch), BFA_IOCPF_FWMISMATCH},
	{BFA_SM(bfa_iocpf_sm_semwait), BFA_IOCPF_SEMWAIT},
	{BFA_SM(bfa_iocpf_sm_hwinit), BFA_IOCPF_HWINIT},
	{BFA_SM(bfa_iocpf_sm_enabling), BFA_IOCPF_HWINIT},
	{BFA_SM(bfa_iocpf_sm_ready), BFA_IOCPF_READY},
	{BFA_SM(bfa_iocpf_sm_initfail), BFA_IOCPF_INITFAIL},
	{BFA_SM(bfa_iocpf_sm_fail), BFA_IOCPF_FAIL},
	{BFA_SM(bfa_iocpf_sm_disabling), BFA_IOCPF_DISABLING},
	{BFA_SM(bfa_iocpf_sm_disabled), BFA_IOCPF_DISABLED},
};

J
Jing Huang 已提交
235
/*
K
Krishna Gudipati 已提交
236 237 238
 * IOC State Machine
 */

J
Jing Huang 已提交
239
/*
K
Krishna Gudipati 已提交
240 241 242 243 244 245 246 247
 * Beginning state. IOC uninit state.
 */

static void
bfa_ioc_sm_uninit_entry(struct bfa_ioc_s *ioc)
{
}

J
Jing Huang 已提交
248
/*
K
Krishna Gudipati 已提交
249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264
 * IOC is in uninit state.
 */
static void
bfa_ioc_sm_uninit(struct bfa_ioc_s *ioc, enum ioc_event event)
{
	bfa_trc(ioc, event);

	switch (event) {
	case IOC_E_RESET:
		bfa_fsm_set_state(ioc, bfa_ioc_sm_reset);
		break;

	default:
		bfa_sm_fault(ioc, event);
	}
}
J
Jing Huang 已提交
265
/*
266 267 268 269 270
 * Reset entry actions -- initialize state machine
 */
static void
bfa_ioc_sm_reset_entry(struct bfa_ioc_s *ioc)
{
K
Krishna Gudipati 已提交
271
	bfa_fsm_set_state(&ioc->iocpf, bfa_iocpf_sm_reset);
272 273
}

J
Jing Huang 已提交
274
/*
K
Krishna Gudipati 已提交
275
 * IOC is in reset state.
276 277 278 279 280 281 282 283
 */
static void
bfa_ioc_sm_reset(struct bfa_ioc_s *ioc, enum ioc_event event)
{
	bfa_trc(ioc, event);

	switch (event) {
	case IOC_E_ENABLE:
K
Krishna Gudipati 已提交
284
		bfa_fsm_set_state(ioc, bfa_ioc_sm_enabling);
285 286 287 288 289 290 291
		break;

	case IOC_E_DISABLE:
		bfa_ioc_disable_comp(ioc);
		break;

	case IOC_E_DETACH:
K
Krishna Gudipati 已提交
292
		bfa_fsm_set_state(ioc, bfa_ioc_sm_uninit);
293 294 295 296 297 298 299
		break;

	default:
		bfa_sm_fault(ioc, event);
	}
}

K
Krishna Gudipati 已提交
300 301 302 303 304 305 306

static void
bfa_ioc_sm_enabling_entry(struct bfa_ioc_s *ioc)
{
	bfa_iocpf_enable(ioc);
}

J
Jing Huang 已提交
307
/*
K
Krishna Gudipati 已提交
308 309
 * Host IOC function is being enabled, awaiting response from firmware.
 * Semaphore is acquired.
310 311
 */
static void
K
Krishna Gudipati 已提交
312
bfa_ioc_sm_enabling(struct bfa_ioc_s *ioc, enum ioc_event event)
313
{
K
Krishna Gudipati 已提交
314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352
	bfa_trc(ioc, event);

	switch (event) {
	case IOC_E_ENABLED:
		bfa_fsm_set_state(ioc, bfa_ioc_sm_getattr);
		break;

	case IOC_E_FAILED:
		bfa_fsm_set_state(ioc, bfa_ioc_sm_initfail);
		break;

	case IOC_E_HWERROR:
		bfa_fsm_set_state(ioc, bfa_ioc_sm_initfail);
		bfa_iocpf_initfail(ioc);
		break;

	case IOC_E_DISABLE:
		bfa_fsm_set_state(ioc, bfa_ioc_sm_disabling);
		break;

	case IOC_E_DETACH:
		bfa_fsm_set_state(ioc, bfa_ioc_sm_uninit);
		bfa_iocpf_stop(ioc);
		break;

	case IOC_E_ENABLE:
		break;

	default:
		bfa_sm_fault(ioc, event);
	}
}


static void
bfa_ioc_sm_getattr_entry(struct bfa_ioc_s *ioc)
{
	bfa_ioc_timer_start(ioc);
	bfa_ioc_send_getattr(ioc);
353 354
}

J
Jing Huang 已提交
355
/*
K
Krishna Gudipati 已提交
356
 * IOC configuration in progress. Timer is active.
357 358
 */
static void
K
Krishna Gudipati 已提交
359
bfa_ioc_sm_getattr(struct bfa_ioc_s *ioc, enum ioc_event event)
360 361 362 363
{
	bfa_trc(ioc, event);

	switch (event) {
K
Krishna Gudipati 已提交
364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381
	case IOC_E_FWRSP_GETATTR:
		bfa_ioc_timer_stop(ioc);
		bfa_ioc_check_attr_wwns(ioc);
		bfa_fsm_set_state(ioc, bfa_ioc_sm_op);
		break;

	case IOC_E_FAILED:
		bfa_ioc_timer_stop(ioc);
		bfa_fsm_set_state(ioc, bfa_ioc_sm_initfail);
		break;

	case IOC_E_HWERROR:
		bfa_ioc_timer_stop(ioc);
		/* fall through */

	case IOC_E_TIMEOUT:
		bfa_fsm_set_state(ioc, bfa_ioc_sm_initfail);
		bfa_iocpf_getattrfail(ioc);
382 383 384
		break;

	case IOC_E_DISABLE:
K
Krishna Gudipati 已提交
385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404
		bfa_ioc_timer_stop(ioc);
		bfa_fsm_set_state(ioc, bfa_ioc_sm_disabling);
		break;

	case IOC_E_ENABLE:
		break;

	default:
		bfa_sm_fault(ioc, event);
	}
}


static void
bfa_ioc_sm_op_entry(struct bfa_ioc_s *ioc)
{
	struct bfad_s *bfad = (struct bfad_s *)ioc->bfa->bfad;

	ioc->cbfn->enable_cbfn(ioc->bfa, BFA_STATUS_OK);
	bfa_ioc_hb_monitor(ioc);
405
	BFA_LOG(KERN_INFO, bfad, bfa_log_level, "IOC enabled\n");
K
Krishna Gudipati 已提交
406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446
}

static void
bfa_ioc_sm_op(struct bfa_ioc_s *ioc, enum ioc_event event)
{
	bfa_trc(ioc, event);

	switch (event) {
	case IOC_E_ENABLE:
		break;

	case IOC_E_DISABLE:
		bfa_ioc_hb_stop(ioc);
		bfa_fsm_set_state(ioc, bfa_ioc_sm_disabling);
		break;

	case IOC_E_FAILED:
		bfa_ioc_hb_stop(ioc);
		bfa_fsm_set_state(ioc, bfa_ioc_sm_fail);
		break;

	case IOC_E_HWERROR:
		bfa_ioc_hb_stop(ioc);
		/* !!! fall through !!! */

	case IOC_E_HBFAIL:
		bfa_fsm_set_state(ioc, bfa_ioc_sm_fail);
		bfa_iocpf_fail(ioc);
		break;

	default:
		bfa_sm_fault(ioc, event);
	}
}


static void
bfa_ioc_sm_disabling_entry(struct bfa_ioc_s *ioc)
{
	struct bfad_s *bfad = (struct bfad_s *)ioc->bfa->bfad;
	bfa_iocpf_disable(ioc);
447
	BFA_LOG(KERN_INFO, bfad, bfa_log_level, "IOC disabled\n");
K
Krishna Gudipati 已提交
448 449
}

J
Jing Huang 已提交
450
/*
K
Krishna Gudipati 已提交
451 452 453 454 455 456 457 458 459 460 461 462 463
 * IOC is being disabled
 */
static void
bfa_ioc_sm_disabling(struct bfa_ioc_s *ioc, enum ioc_event event)
{
	bfa_trc(ioc, event);

	switch (event) {
	case IOC_E_DISABLED:
		bfa_fsm_set_state(ioc, bfa_ioc_sm_disabled);
		break;

	case IOC_E_HWERROR:
464
		/*
K
Krishna Gudipati 已提交
465 466 467
		 * No state change.  Will move to disabled state
		 * after iocpf sm completes failure processing and
		 * moves to disabled state.
468
		 */
K
Krishna Gudipati 已提交
469 470
		bfa_iocpf_fail(ioc);
		break;
471

K
Krishna Gudipati 已提交
472 473 474 475 476
	default:
		bfa_sm_fault(ioc, event);
	}
}

J
Jing Huang 已提交
477
/*
K
Krishna Gudipati 已提交
478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493
 * IOC disable completion entry.
 */
static void
bfa_ioc_sm_disabled_entry(struct bfa_ioc_s *ioc)
{
	bfa_ioc_disable_comp(ioc);
}

static void
bfa_ioc_sm_disabled(struct bfa_ioc_s *ioc, enum ioc_event event)
{
	bfa_trc(ioc, event);

	switch (event) {
	case IOC_E_ENABLE:
		bfa_fsm_set_state(ioc, bfa_ioc_sm_enabling);
494 495
		break;

K
Krishna Gudipati 已提交
496 497 498 499 500 501 502
	case IOC_E_DISABLE:
		ioc->cbfn->disable_cbfn(ioc->bfa);
		break;

	case IOC_E_DETACH:
		bfa_fsm_set_state(ioc, bfa_ioc_sm_uninit);
		bfa_iocpf_stop(ioc);
503 504 505 506 507 508 509
		break;

	default:
		bfa_sm_fault(ioc, event);
	}
}

K
Krishna Gudipati 已提交
510 511 512 513 514 515 516

static void
bfa_ioc_sm_initfail_entry(struct bfa_ioc_s *ioc)
{
	ioc->cbfn->enable_cbfn(ioc->bfa, BFA_STATUS_IOC_FAILURE);
}

J
Jing Huang 已提交
517
/*
K
Krishna Gudipati 已提交
518
 * Hardware initialization failed.
519 520
 */
static void
K
Krishna Gudipati 已提交
521
bfa_ioc_sm_initfail(struct bfa_ioc_s *ioc, enum ioc_event event)
522
{
K
Krishna Gudipati 已提交
523 524 525 526 527 528 529 530
	bfa_trc(ioc, event);

	switch (event) {
	case IOC_E_ENABLED:
		bfa_fsm_set_state(ioc, bfa_ioc_sm_getattr);
		break;

	case IOC_E_FAILED:
J
Jing Huang 已提交
531
		/*
K
Krishna Gudipati 已提交
532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558
		 * Initialization failure during iocpf init retry.
		 */
		ioc->cbfn->enable_cbfn(ioc->bfa, BFA_STATUS_IOC_FAILURE);
		break;

	case IOC_E_DISABLE:
		bfa_fsm_set_state(ioc, bfa_ioc_sm_disabling);
		break;

	case IOC_E_DETACH:
		bfa_fsm_set_state(ioc, bfa_ioc_sm_uninit);
		bfa_iocpf_stop(ioc);
		break;

	default:
		bfa_sm_fault(ioc, event);
	}
}


static void
bfa_ioc_sm_fail_entry(struct bfa_ioc_s *ioc)
{
	struct list_head			*qe;
	struct bfa_ioc_hbfail_notify_s	*notify;
	struct bfad_s *bfad = (struct bfad_s *)ioc->bfa->bfad;

J
Jing Huang 已提交
559
	/*
K
Krishna Gudipati 已提交
560
	 * Notify driver and common modules registered for notification.
561
	 */
K
Krishna Gudipati 已提交
562 563 564 565
	ioc->cbfn->hbfail_cbfn(ioc->bfa);
	list_for_each(qe, &ioc->hb_notify_q) {
		notify = (struct bfa_ioc_hbfail_notify_s *) qe;
		notify->cbfn(notify->cbarg);
566
	}
K
Krishna Gudipati 已提交
567

568
	BFA_LOG(KERN_CRIT, bfad, bfa_log_level,
K
Krishna Gudipati 已提交
569
		"Heart Beat of IOC has failed\n");
570 571
}

J
Jing Huang 已提交
572
/*
K
Krishna Gudipati 已提交
573
 * IOC failure.
574 575
 */
static void
K
Krishna Gudipati 已提交
576
bfa_ioc_sm_fail(struct bfa_ioc_s *ioc, enum ioc_event event)
577 578 579 580
{
	bfa_trc(ioc, event);

	switch (event) {
K
Krishna Gudipati 已提交
581 582

	case IOC_E_FAILED:
J
Jing Huang 已提交
583
		/*
K
Krishna Gudipati 已提交
584 585 586 587 588 589 590 591 592
		 * Initialization failure during iocpf recovery.
		 * !!! Fall through !!!
		 */
	case IOC_E_ENABLE:
		ioc->cbfn->enable_cbfn(ioc->bfa, BFA_STATUS_IOC_FAILURE);
		break;

	case IOC_E_ENABLED:
		bfa_fsm_set_state(ioc, bfa_ioc_sm_getattr);
593 594 595
		break;

	case IOC_E_DISABLE:
K
Krishna Gudipati 已提交
596 597 598 599
		bfa_fsm_set_state(ioc, bfa_ioc_sm_disabling);
		break;

	case IOC_E_HWERROR:
600
		/*
K
Krishna Gudipati 已提交
601
		 * HB failure notification, ignore.
602
		 */
K
Krishna Gudipati 已提交
603 604 605 606 607
		break;
	default:
		bfa_sm_fault(ioc, event);
	}
}
608

K
Krishna Gudipati 已提交
609 610


J
Jing Huang 已提交
611
/*
K
Krishna Gudipati 已提交
612 613 614 615
 * IOCPF State Machine
 */


J
Jing Huang 已提交
616
/*
K
Krishna Gudipati 已提交
617 618 619 620 621 622 623 624 625
 * Reset entry actions -- initialize state machine
 */
static void
bfa_iocpf_sm_reset_entry(struct bfa_iocpf_s *iocpf)
{
	iocpf->retry_count = 0;
	iocpf->auto_recover = bfa_auto_recover;
}

J
Jing Huang 已提交
626
/*
K
Krishna Gudipati 已提交
627 628 629 630 631 632 633 634 635 636 637 638
 * Beginning state. IOC is in reset state.
 */
static void
bfa_iocpf_sm_reset(struct bfa_iocpf_s *iocpf, enum iocpf_event event)
{
	struct bfa_ioc_s *ioc = iocpf->ioc;

	bfa_trc(ioc, event);

	switch (event) {
	case IOCPF_E_ENABLE:
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_fwcheck);
639 640
		break;

K
Krishna Gudipati 已提交
641
	case IOCPF_E_STOP:
642 643 644 645 646 647 648
		break;

	default:
		bfa_sm_fault(ioc, event);
	}
}

J
Jing Huang 已提交
649
/*
K
Krishna Gudipati 已提交
650
 * Semaphore should be acquired for version check.
651 652
 */
static void
K
Krishna Gudipati 已提交
653
bfa_iocpf_sm_fwcheck_entry(struct bfa_iocpf_s *iocpf)
654
{
K
Krishna Gudipati 已提交
655
	bfa_ioc_hw_sem_get(iocpf->ioc);
656 657
}

J
Jing Huang 已提交
658
/*
K
Krishna Gudipati 已提交
659
 * Awaiting h/w semaphore to continue with version check.
660 661
 */
static void
K
Krishna Gudipati 已提交
662
bfa_iocpf_sm_fwcheck(struct bfa_iocpf_s *iocpf, enum iocpf_event event)
663
{
K
Krishna Gudipati 已提交
664 665
	struct bfa_ioc_s *ioc = iocpf->ioc;

666 667 668
	bfa_trc(ioc, event);

	switch (event) {
K
Krishna Gudipati 已提交
669 670 671 672 673 674 675 676
	case IOCPF_E_SEMLOCKED:
		if (bfa_ioc_firmware_lock(ioc)) {
			iocpf->retry_count = 0;
			bfa_fsm_set_state(iocpf, bfa_iocpf_sm_hwinit);
		} else {
			bfa_ioc_hw_sem_release(ioc);
			bfa_fsm_set_state(iocpf, bfa_iocpf_sm_mismatch);
		}
677 678
		break;

K
Krishna Gudipati 已提交
679
	case IOCPF_E_DISABLE:
680
		bfa_ioc_hw_sem_get_cancel(ioc);
K
Krishna Gudipati 已提交
681 682 683 684 685 686 687
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_reset);
		bfa_ioc_pf_disabled(ioc);
		break;

	case IOCPF_E_STOP:
		bfa_ioc_hw_sem_get_cancel(ioc);
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_reset);
688 689 690 691 692 693 694
		break;

	default:
		bfa_sm_fault(ioc, event);
	}
}

J
Jing Huang 已提交
695
/*
K
Krishna Gudipati 已提交
696 697
 * Notify enable completion callback.
 */
698
static void
K
Krishna Gudipati 已提交
699
bfa_iocpf_sm_mismatch_entry(struct bfa_iocpf_s *iocpf)
700
{
K
Krishna Gudipati 已提交
701 702 703 704 705 706 707 708
	/*
	 * Call only the first time sm enters fwmismatch state.
	 */
	if (iocpf->retry_count == 0)
		bfa_ioc_pf_fwmismatch(iocpf->ioc);

	iocpf->retry_count++;
	bfa_iocpf_timer_start(iocpf->ioc);
709 710
}

J
Jing Huang 已提交
711
/*
K
Krishna Gudipati 已提交
712
 * Awaiting firmware version match.
713 714
 */
static void
K
Krishna Gudipati 已提交
715
bfa_iocpf_sm_mismatch(struct bfa_iocpf_s *iocpf, enum iocpf_event event)
716
{
K
Krishna Gudipati 已提交
717 718
	struct bfa_ioc_s *ioc = iocpf->ioc;

719 720 721
	bfa_trc(ioc, event);

	switch (event) {
K
Krishna Gudipati 已提交
722 723
	case IOCPF_E_TIMEOUT:
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_fwcheck);
724 725
		break;

K
Krishna Gudipati 已提交
726 727 728 729 730
	case IOCPF_E_DISABLE:
		bfa_iocpf_timer_stop(ioc);
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_reset);
		bfa_ioc_pf_disabled(ioc);
		break;
731

K
Krishna Gudipati 已提交
732 733 734 735
	case IOCPF_E_STOP:
		bfa_iocpf_timer_stop(ioc);
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_reset);
		break;
736

K
Krishna Gudipati 已提交
737 738 739 740 741
	default:
		bfa_sm_fault(ioc, event);
	}
}

J
Jing Huang 已提交
742
/*
K
Krishna Gudipati 已提交
743 744 745 746 747 748 749 750
 * Request for semaphore.
 */
static void
bfa_iocpf_sm_semwait_entry(struct bfa_iocpf_s *iocpf)
{
	bfa_ioc_hw_sem_get(iocpf->ioc);
}

J
Jing Huang 已提交
751
/*
K
Krishna Gudipati 已提交
752 753 754 755 756 757 758 759 760 761 762 763 764
 * Awaiting semaphore for h/w initialzation.
 */
static void
bfa_iocpf_sm_semwait(struct bfa_iocpf_s *iocpf, enum iocpf_event event)
{
	struct bfa_ioc_s *ioc = iocpf->ioc;

	bfa_trc(ioc, event);

	switch (event) {
	case IOCPF_E_SEMLOCKED:
		iocpf->retry_count = 0;
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_hwinit);
765 766
		break;

K
Krishna Gudipati 已提交
767 768 769
	case IOCPF_E_DISABLE:
		bfa_ioc_hw_sem_get_cancel(ioc);
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabled);
770 771 772 773 774 775 776 777 778
		break;

	default:
		bfa_sm_fault(ioc, event);
	}
}


static void
K
Krishna Gudipati 已提交
779
bfa_iocpf_sm_hwinit_entry(struct bfa_iocpf_s *iocpf)
780
{
K
Krishna Gudipati 已提交
781 782
	bfa_iocpf_timer_start(iocpf->ioc);
	bfa_ioc_reset(iocpf->ioc, BFA_FALSE);
783 784
}

J
Jing Huang 已提交
785
/*
K
Krishna Gudipati 已提交
786 787
 * Hardware is being initialized. Interrupts are enabled.
 * Holding hardware semaphore lock.
788 789
 */
static void
K
Krishna Gudipati 已提交
790
bfa_iocpf_sm_hwinit(struct bfa_iocpf_s *iocpf, enum iocpf_event event)
791
{
K
Krishna Gudipati 已提交
792 793
	struct bfa_ioc_s *ioc = iocpf->ioc;

794 795 796
	bfa_trc(ioc, event);

	switch (event) {
K
Krishna Gudipati 已提交
797 798 799
	case IOCPF_E_FWREADY:
		bfa_iocpf_timer_stop(ioc);
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_enabling);
800 801
		break;

K
Krishna Gudipati 已提交
802 803
	case IOCPF_E_INITFAIL:
		bfa_iocpf_timer_stop(ioc);
804
		/*
K
Krishna Gudipati 已提交
805
		 * !!! fall through !!!
806 807
		 */

K
Krishna Gudipati 已提交
808 809 810 811 812
	case IOCPF_E_TIMEOUT:
		iocpf->retry_count++;
		if (iocpf->retry_count < BFA_IOC_HWINIT_MAX) {
			bfa_iocpf_timer_start(ioc);
			bfa_ioc_reset(ioc, BFA_TRUE);
813 814 815 816
			break;
		}

		bfa_ioc_hw_sem_release(ioc);
K
Krishna Gudipati 已提交
817
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_initfail);
818

K
Krishna Gudipati 已提交
819 820
		if (event == IOCPF_E_TIMEOUT)
			bfa_ioc_pf_failed(ioc);
821 822
		break;

K
Krishna Gudipati 已提交
823 824 825 826
	case IOCPF_E_DISABLE:
		bfa_ioc_hw_sem_release(ioc);
		bfa_iocpf_timer_stop(ioc);
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabled);
827 828 829 830 831 832 833 834 835
		break;

	default:
		bfa_sm_fault(ioc, event);
	}
}


static void
K
Krishna Gudipati 已提交
836
bfa_iocpf_sm_enabling_entry(struct bfa_iocpf_s *iocpf)
837
{
K
Krishna Gudipati 已提交
838 839
	bfa_iocpf_timer_start(iocpf->ioc);
	bfa_ioc_send_enable(iocpf->ioc);
840 841
}

J
Jing Huang 已提交
842
/*
K
Krishna Gudipati 已提交
843 844
 * Host IOC function is being enabled, awaiting response from firmware.
 * Semaphore is acquired.
845 846
 */
static void
K
Krishna Gudipati 已提交
847
bfa_iocpf_sm_enabling(struct bfa_iocpf_s *iocpf, enum iocpf_event event)
848
{
K
Krishna Gudipati 已提交
849 850
	struct bfa_ioc_s *ioc = iocpf->ioc;

851 852 853
	bfa_trc(ioc, event);

	switch (event) {
K
Krishna Gudipati 已提交
854 855 856 857
	case IOCPF_E_FWRSP_ENABLE:
		bfa_iocpf_timer_stop(ioc);
		bfa_ioc_hw_sem_release(ioc);
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_ready);
858 859
		break;

K
Krishna Gudipati 已提交
860 861
	case IOCPF_E_INITFAIL:
		bfa_iocpf_timer_stop(ioc);
862
		/*
K
Krishna Gudipati 已提交
863
		 * !!! fall through !!!
864 865
		 */

K
Krishna Gudipati 已提交
866 867 868
	case IOCPF_E_TIMEOUT:
		iocpf->retry_count++;
		if (iocpf->retry_count < BFA_IOC_HWINIT_MAX) {
869
			writel(BFI_IOC_UNINIT, ioc->ioc_regs.ioc_fwstate);
K
Krishna Gudipati 已提交
870 871 872 873 874 875 876 877 878
			bfa_fsm_set_state(iocpf, bfa_iocpf_sm_hwinit);
			break;
		}

		bfa_ioc_hw_sem_release(ioc);
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_initfail);

		if (event == IOCPF_E_TIMEOUT)
			bfa_ioc_pf_failed(ioc);
879 880
		break;

K
Krishna Gudipati 已提交
881 882 883 884 885 886 887 888
	case IOCPF_E_DISABLE:
		bfa_iocpf_timer_stop(ioc);
		bfa_ioc_hw_sem_release(ioc);
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabling);
		break;

	case IOCPF_E_FWREADY:
		bfa_ioc_send_enable(ioc);
889 890 891 892 893 894 895 896
		break;

	default:
		bfa_sm_fault(ioc, event);
	}
}


K
Krishna Gudipati 已提交
897

898
static void
K
Krishna Gudipati 已提交
899
bfa_iocpf_sm_ready_entry(struct bfa_iocpf_s *iocpf)
900
{
K
Krishna Gudipati 已提交
901
	bfa_ioc_pf_enabled(iocpf->ioc);
902 903 904
}

static void
K
Krishna Gudipati 已提交
905
bfa_iocpf_sm_ready(struct bfa_iocpf_s *iocpf, enum iocpf_event event)
906
{
K
Krishna Gudipati 已提交
907 908
	struct bfa_ioc_s *ioc = iocpf->ioc;

909 910 911
	bfa_trc(ioc, event);

	switch (event) {
K
Krishna Gudipati 已提交
912 913 914 915 916 917
	case IOCPF_E_DISABLE:
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabling);
		break;

	case IOCPF_E_GETATTRFAIL:
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_initfail);
918 919
		break;

K
Krishna Gudipati 已提交
920 921
	case IOCPF_E_FAIL:
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_fail);
922 923
		break;

K
Krishna Gudipati 已提交
924 925 926 927 928
	case IOCPF_E_FWREADY:
		if (bfa_ioc_is_operational(ioc))
			bfa_fsm_set_state(iocpf, bfa_iocpf_sm_fail);
		else
			bfa_fsm_set_state(iocpf, bfa_iocpf_sm_initfail);
929

K
Krishna Gudipati 已提交
930
		bfa_ioc_pf_failed(ioc);
931 932 933 934 935 936 937 938 939
		break;

	default:
		bfa_sm_fault(ioc, event);
	}
}


static void
K
Krishna Gudipati 已提交
940
bfa_iocpf_sm_disabling_entry(struct bfa_iocpf_s *iocpf)
941
{
K
Krishna Gudipati 已提交
942 943
	bfa_iocpf_timer_start(iocpf->ioc);
	bfa_ioc_send_disable(iocpf->ioc);
944 945
}

J
Jing Huang 已提交
946
/*
947 948 949
 * IOC is being disabled
 */
static void
K
Krishna Gudipati 已提交
950
bfa_iocpf_sm_disabling(struct bfa_iocpf_s *iocpf, enum iocpf_event event)
951
{
K
Krishna Gudipati 已提交
952 953
	struct bfa_ioc_s *ioc = iocpf->ioc;

954 955 956
	bfa_trc(ioc, event);

	switch (event) {
K
Krishna Gudipati 已提交
957 958 959 960
	case IOCPF_E_FWRSP_DISABLE:
	case IOCPF_E_FWREADY:
		bfa_iocpf_timer_stop(ioc);
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabled);
961 962
		break;

K
Krishna Gudipati 已提交
963 964
	case IOCPF_E_FAIL:
		bfa_iocpf_timer_stop(ioc);
965 966 967 968
		/*
		 * !!! fall through !!!
		 */

K
Krishna Gudipati 已提交
969
	case IOCPF_E_TIMEOUT:
970
		writel(BFI_IOC_FAIL, ioc->ioc_regs.ioc_fwstate);
K
Krishna Gudipati 已提交
971 972 973 974
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabled);
		break;

	case IOCPF_E_FWRSP_ENABLE:
975 976 977 978 979 980 981
		break;

	default:
		bfa_sm_fault(ioc, event);
	}
}

J
Jing Huang 已提交
982
/*
983 984 985
 * IOC disable completion entry.
 */
static void
K
Krishna Gudipati 已提交
986
bfa_iocpf_sm_disabled_entry(struct bfa_iocpf_s *iocpf)
987
{
K
Krishna Gudipati 已提交
988
	bfa_ioc_pf_disabled(iocpf->ioc);
989 990 991
}

static void
K
Krishna Gudipati 已提交
992
bfa_iocpf_sm_disabled(struct bfa_iocpf_s *iocpf, enum iocpf_event event)
993
{
K
Krishna Gudipati 已提交
994 995
	struct bfa_ioc_s *ioc = iocpf->ioc;

996 997 998
	bfa_trc(ioc, event);

	switch (event) {
K
Krishna Gudipati 已提交
999 1000
	case IOCPF_E_ENABLE:
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_semwait);
1001 1002
		break;

K
Krishna Gudipati 已提交
1003
	case IOCPF_E_STOP:
1004
		bfa_ioc_firmware_unlock(ioc);
K
Krishna Gudipati 已提交
1005
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_reset);
1006 1007 1008 1009 1010 1011 1012 1013 1014
		break;

	default:
		bfa_sm_fault(ioc, event);
	}
}


static void
K
Krishna Gudipati 已提交
1015
bfa_iocpf_sm_initfail_entry(struct bfa_iocpf_s *iocpf)
1016
{
K
Krishna Gudipati 已提交
1017
	bfa_iocpf_timer_start(iocpf->ioc);
1018 1019
}

J
Jing Huang 已提交
1020
/*
1021 1022 1023
 * Hardware initialization failed.
 */
static void
K
Krishna Gudipati 已提交
1024
bfa_iocpf_sm_initfail(struct bfa_iocpf_s *iocpf, enum iocpf_event event)
1025
{
K
Krishna Gudipati 已提交
1026 1027
	struct bfa_ioc_s *ioc = iocpf->ioc;

1028 1029 1030
	bfa_trc(ioc, event);

	switch (event) {
K
Krishna Gudipati 已提交
1031 1032 1033
	case IOCPF_E_DISABLE:
		bfa_iocpf_timer_stop(ioc);
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabled);
1034 1035
		break;

K
Krishna Gudipati 已提交
1036 1037
	case IOCPF_E_STOP:
		bfa_iocpf_timer_stop(ioc);
1038
		bfa_ioc_firmware_unlock(ioc);
K
Krishna Gudipati 已提交
1039
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_reset);
1040 1041
		break;

K
Krishna Gudipati 已提交
1042 1043
	case IOCPF_E_TIMEOUT:
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_semwait);
1044 1045 1046 1047 1048 1049 1050 1051 1052
		break;

	default:
		bfa_sm_fault(ioc, event);
	}
}


static void
K
Krishna Gudipati 已提交
1053
bfa_iocpf_sm_fail_entry(struct bfa_iocpf_s *iocpf)
1054
{
J
Jing Huang 已提交
1055
	/*
1056 1057
	 * Mark IOC as failed in hardware and stop firmware.
	 */
K
Krishna Gudipati 已提交
1058
	bfa_ioc_lpu_stop(iocpf->ioc);
1059
	writel(BFI_IOC_FAIL, iocpf->ioc->ioc_regs.ioc_fwstate);
1060

J
Jing Huang 已提交
1061
	/*
1062 1063
	 * Notify other functions on HB failure.
	 */
K
Krishna Gudipati 已提交
1064
	bfa_ioc_notify_hbfail(iocpf->ioc);
1065

J
Jing Huang 已提交
1066
	/*
1067 1068
	 * Flush any queued up mailbox requests.
	 */
K
Krishna Gudipati 已提交
1069
	bfa_ioc_mbox_hbfail(iocpf->ioc);
1070

K
Krishna Gudipati 已提交
1071 1072
	if (iocpf->auto_recover)
		bfa_iocpf_recovery_timer_start(iocpf->ioc);
1073 1074
}

J
Jing Huang 已提交
1075
/*
K
Krishna Gudipati 已提交
1076
 * IOC is in failed state.
1077 1078
 */
static void
K
Krishna Gudipati 已提交
1079
bfa_iocpf_sm_fail(struct bfa_iocpf_s *iocpf, enum iocpf_event event)
1080
{
K
Krishna Gudipati 已提交
1081 1082
	struct bfa_ioc_s *ioc = iocpf->ioc;

1083 1084 1085
	bfa_trc(ioc, event);

	switch (event) {
K
Krishna Gudipati 已提交
1086 1087 1088 1089
	case IOCPF_E_DISABLE:
		if (iocpf->auto_recover)
			bfa_iocpf_timer_stop(ioc);
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabled);
1090 1091
		break;

K
Krishna Gudipati 已提交
1092 1093
	case IOCPF_E_TIMEOUT:
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_semwait);
1094 1095
		break;

1096 1097 1098 1099 1100 1101 1102
	default:
		bfa_sm_fault(ioc, event);
	}
}



J
Jing Huang 已提交
1103
/*
K
Krishna Gudipati 已提交
1104
 *  hal_ioc_pvt BFA IOC private functions
1105 1106 1107 1108 1109
 */

static void
bfa_ioc_disable_comp(struct bfa_ioc_s *ioc)
{
K
Krishna Gudipati 已提交
1110 1111
	struct list_head			*qe;
	struct bfa_ioc_hbfail_notify_s	*notify;
1112 1113 1114

	ioc->cbfn->disable_cbfn(ioc->bfa);

J
Jing Huang 已提交
1115
	/*
1116 1117 1118
	 * Notify common modules registered for notification.
	 */
	list_for_each(qe, &ioc->hb_notify_q) {
K
Krishna Gudipati 已提交
1119
		notify = (struct bfa_ioc_hbfail_notify_s *) qe;
1120 1121 1122 1123
		notify->cbfn(notify->cbarg);
	}
}

1124
bfa_boolean_t
1125
bfa_ioc_sem_get(void __iomem *sem_reg)
1126
{
1127 1128
	u32 r32;
	int cnt = 0;
K
Krishna Gudipati 已提交
1129
#define BFA_SEM_SPINCNT	3000
1130

1131
	r32 = readl(sem_reg);
1132 1133

	while (r32 && (cnt < BFA_SEM_SPINCNT)) {
1134
		cnt++;
1135
		udelay(2);
1136
		r32 = readl(sem_reg);
1137 1138 1139 1140 1141
	}

	if (r32 == 0)
		return BFA_TRUE;

1142
	bfa_assert(cnt < BFA_SEM_SPINCNT);
1143
	return BFA_FALSE;
1144 1145
}

1146
void
1147
bfa_ioc_sem_release(void __iomem *sem_reg)
1148
{
1149
	writel(1, sem_reg);
1150 1151 1152 1153 1154
}

static void
bfa_ioc_hw_sem_get(struct bfa_ioc_s *ioc)
{
K
Krishna Gudipati 已提交
1155
	u32	r32;
1156

J
Jing Huang 已提交
1157
	/*
1158
	 * First read to the semaphore register will return 0, subsequent reads
1159
	 * will return 1. Semaphore is released by writing 1 to the register
1160
	 */
1161
	r32 = readl(ioc->ioc_regs.ioc_sem_reg);
1162
	if (r32 == 0) {
K
Krishna Gudipati 已提交
1163
		bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_SEMLOCKED);
1164 1165 1166
		return;
	}

K
Krishna Gudipati 已提交
1167
	bfa_sem_timer_start(ioc);
1168 1169
}

1170
void
1171 1172
bfa_ioc_hw_sem_release(struct bfa_ioc_s *ioc)
{
1173
	writel(1, ioc->ioc_regs.ioc_sem_reg);
1174 1175 1176 1177 1178
}

static void
bfa_ioc_hw_sem_get_cancel(struct bfa_ioc_s *ioc)
{
K
Krishna Gudipati 已提交
1179
	bfa_sem_timer_stop(ioc);
1180 1181
}

J
Jing Huang 已提交
1182
/*
1183 1184 1185 1186 1187
 * Initialize LPU local memory (aka secondary memory / SRAM)
 */
static void
bfa_ioc_lmem_init(struct bfa_ioc_s *ioc)
{
K
Krishna Gudipati 已提交
1188 1189
	u32	pss_ctl;
	int		i;
1190 1191
#define PSS_LMEM_INIT_TIME  10000

1192
	pss_ctl = readl(ioc->ioc_regs.pss_ctl_reg);
1193 1194
	pss_ctl &= ~__PSS_LMEM_RESET;
	pss_ctl |= __PSS_LMEM_INIT_EN;
K
Krishna Gudipati 已提交
1195 1196 1197 1198 1199

	/*
	 * i2c workaround 12.5khz clock
	 */
	pss_ctl |= __PSS_I2C_CLK_DIV(3UL);
1200
	writel(pss_ctl, ioc->ioc_regs.pss_ctl_reg);
1201

J
Jing Huang 已提交
1202
	/*
1203 1204 1205 1206
	 * wait for memory initialization to be complete
	 */
	i = 0;
	do {
1207
		pss_ctl = readl(ioc->ioc_regs.pss_ctl_reg);
1208 1209 1210
		i++;
	} while (!(pss_ctl & __PSS_LMEM_INIT_DONE) && (i < PSS_LMEM_INIT_TIME));

J
Jing Huang 已提交
1211
	/*
1212 1213 1214 1215 1216 1217 1218
	 * If memory initialization is not successful, IOC timeout will catch
	 * such failures.
	 */
	bfa_assert(pss_ctl & __PSS_LMEM_INIT_DONE);
	bfa_trc(ioc, pss_ctl);

	pss_ctl &= ~(__PSS_LMEM_INIT_DONE | __PSS_LMEM_INIT_EN);
1219
	writel(pss_ctl, ioc->ioc_regs.pss_ctl_reg);
1220 1221 1222 1223 1224
}

static void
bfa_ioc_lpu_start(struct bfa_ioc_s *ioc)
{
K
Krishna Gudipati 已提交
1225
	u32	pss_ctl;
1226

J
Jing Huang 已提交
1227
	/*
1228 1229
	 * Take processor out of reset.
	 */
1230
	pss_ctl = readl(ioc->ioc_regs.pss_ctl_reg);
1231 1232
	pss_ctl &= ~__PSS_LPU0_RESET;

1233
	writel(pss_ctl, ioc->ioc_regs.pss_ctl_reg);
1234 1235 1236 1237 1238
}

static void
bfa_ioc_lpu_stop(struct bfa_ioc_s *ioc)
{
K
Krishna Gudipati 已提交
1239
	u32	pss_ctl;
1240

J
Jing Huang 已提交
1241
	/*
1242 1243
	 * Put processors in reset.
	 */
1244
	pss_ctl = readl(ioc->ioc_regs.pss_ctl_reg);
1245 1246
	pss_ctl |= (__PSS_LPU0_RESET | __PSS_LPU1_RESET);

1247
	writel(pss_ctl, ioc->ioc_regs.pss_ctl_reg);
1248 1249
}

J
Jing Huang 已提交
1250
/*
1251 1252
 * Get driver and firmware versions.
 */
1253
void
1254 1255
bfa_ioc_fwver_get(struct bfa_ioc_s *ioc, struct bfi_ioc_image_hdr_s *fwhdr)
{
K
Krishna Gudipati 已提交
1256 1257 1258 1259
	u32	pgnum, pgoff;
	u32	loff = 0;
	int		i;
	u32	*fwsig = (u32 *) fwhdr;
1260 1261 1262

	pgnum = bfa_ioc_smem_pgnum(ioc, loff);
	pgoff = bfa_ioc_smem_pgoff(ioc, loff);
1263
	writel(pgnum, ioc->ioc_regs.host_page_num_fn);
1264 1265 1266

	for (i = 0; i < (sizeof(struct bfi_ioc_image_hdr_s) / sizeof(u32));
	     i++) {
K
Krishna Gudipati 已提交
1267 1268
		fwsig[i] =
			bfa_mem_read(ioc->ioc_regs.smem_page_start, loff);
1269 1270 1271 1272
		loff += sizeof(u32);
	}
}

J
Jing Huang 已提交
1273
/*
1274 1275
 * Returns TRUE if same.
 */
1276
bfa_boolean_t
1277 1278 1279
bfa_ioc_fwver_cmp(struct bfa_ioc_s *ioc, struct bfi_ioc_image_hdr_s *fwhdr)
{
	struct bfi_ioc_image_hdr_s *drv_fwhdr;
K
Krishna Gudipati 已提交
1280
	int i;
1281

J
Jing Huang 已提交
1282
	drv_fwhdr = (struct bfi_ioc_image_hdr_s *)
K
Krishna Gudipati 已提交
1283
		bfa_cb_image_get_chunk(BFA_IOC_FWIMG_TYPE(ioc), 0);
1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297

	for (i = 0; i < BFI_IOC_MD5SUM_SZ; i++) {
		if (fwhdr->md5sum[i] != drv_fwhdr->md5sum[i]) {
			bfa_trc(ioc, i);
			bfa_trc(ioc, fwhdr->md5sum[i]);
			bfa_trc(ioc, drv_fwhdr->md5sum[i]);
			return BFA_FALSE;
		}
	}

	bfa_trc(ioc, fwhdr->md5sum[0]);
	return BFA_TRUE;
}

J
Jing Huang 已提交
1298
/*
1299 1300 1301
 * Return true if current running version is valid. Firmware signature and
 * execution context (driver/bios) must match.
 */
K
Krishna Gudipati 已提交
1302 1303
static bfa_boolean_t
bfa_ioc_fwver_valid(struct bfa_ioc_s *ioc, u32 boot_env)
1304 1305 1306
{
	struct bfi_ioc_image_hdr_s fwhdr, *drv_fwhdr;

J
Jing Huang 已提交
1307
	/*
1308 1309
	 * If bios/efi boot (flash based) -- return true
	 */
K
Krishna Gudipati 已提交
1310
	if (bfa_ioc_is_bios_optrom(ioc))
1311 1312 1313
		return BFA_TRUE;

	bfa_ioc_fwver_get(ioc, &fwhdr);
J
Jing Huang 已提交
1314
	drv_fwhdr = (struct bfi_ioc_image_hdr_s *)
K
Krishna Gudipati 已提交
1315
		bfa_cb_image_get_chunk(BFA_IOC_FWIMG_TYPE(ioc), 0);
1316 1317 1318 1319 1320 1321 1322

	if (fwhdr.signature != drv_fwhdr->signature) {
		bfa_trc(ioc, fwhdr.signature);
		bfa_trc(ioc, drv_fwhdr->signature);
		return BFA_FALSE;
	}

1323
	if (swab32(fwhdr.param) != boot_env) {
K
Krishna Gudipati 已提交
1324 1325
		bfa_trc(ioc, fwhdr.param);
		bfa_trc(ioc, boot_env);
1326 1327 1328 1329 1330 1331
		return BFA_FALSE;
	}

	return bfa_ioc_fwver_cmp(ioc, &fwhdr);
}

J
Jing Huang 已提交
1332
/*
1333 1334 1335 1336 1337
 * Conditionally flush any pending message from firmware at start.
 */
static void
bfa_ioc_msgflush(struct bfa_ioc_s *ioc)
{
K
Krishna Gudipati 已提交
1338
	u32	r32;
1339

1340
	r32 = readl(ioc->ioc_regs.lpu_mbox_cmd);
1341
	if (r32)
1342
		writel(1, ioc->ioc_regs.lpu_mbox_cmd);
1343 1344 1345 1346 1347 1348 1349
}


static void
bfa_ioc_hwinit(struct bfa_ioc_s *ioc, bfa_boolean_t force)
{
	enum bfi_ioc_state ioc_fwstate;
K
Krishna Gudipati 已提交
1350 1351 1352
	bfa_boolean_t fwvalid;
	u32 boot_type;
	u32 boot_env;
1353

1354
	ioc_fwstate = readl(ioc->ioc_regs.ioc_fwstate);
1355 1356 1357 1358 1359 1360

	if (force)
		ioc_fwstate = BFI_IOC_UNINIT;

	bfa_trc(ioc, ioc_fwstate);

K
Krishna Gudipati 已提交
1361 1362 1363
	boot_type = BFI_BOOT_TYPE_NORMAL;
	boot_env = BFI_BOOT_LOADER_OS;

J
Jing Huang 已提交
1364
	/*
K
Krishna Gudipati 已提交
1365 1366 1367 1368 1369 1370 1371
	 * Flash based firmware boot BIOS env.
	 */
	if (bfa_ioc_is_bios_optrom(ioc)) {
		boot_type = BFI_BOOT_TYPE_FLASH;
		boot_env = BFI_BOOT_LOADER_BIOS;
	}

J
Jing Huang 已提交
1372
	/*
K
Krishna Gudipati 已提交
1373 1374 1375 1376 1377 1378 1379
	 * Flash based firmware boot UEFI env.
	 */
	if (bfa_ioc_is_uefi(ioc)) {
		boot_type = BFI_BOOT_TYPE_FLASH;
		boot_env = BFI_BOOT_LOADER_UEFI;
	}

J
Jing Huang 已提交
1380
	/*
1381 1382 1383
	 * check if firmware is valid
	 */
	fwvalid = (ioc_fwstate == BFI_IOC_UNINIT) ?
K
Krishna Gudipati 已提交
1384
		BFA_FALSE : bfa_ioc_fwver_valid(ioc, boot_env);
1385 1386

	if (!fwvalid) {
K
Krishna Gudipati 已提交
1387
		bfa_ioc_boot(ioc, boot_type, boot_env);
1388 1389 1390
		return;
	}

J
Jing Huang 已提交
1391
	/*
1392 1393 1394 1395 1396 1397 1398 1399
	 * If hardware initialization is in progress (initialized by other IOC),
	 * just wait for an initialization completion interrupt.
	 */
	if (ioc_fwstate == BFI_IOC_INITING) {
		ioc->cbfn->reset_cbfn(ioc->bfa);
		return;
	}

J
Jing Huang 已提交
1400
	/*
1401 1402
	 * If IOC function is disabled and firmware version is same,
	 * just re-enable IOC.
J
Jing Huang 已提交
1403 1404 1405 1406
	 *
	 * If option rom, IOC must not be in operational state. With
	 * convergence, IOC will be in operational state when 2nd driver
	 * is loaded.
1407
	 */
J
Jing Huang 已提交
1408
	if (ioc_fwstate == BFI_IOC_DISABLED ||
K
Krishna Gudipati 已提交
1409
	    (!bfa_ioc_is_bios_optrom(ioc) && ioc_fwstate == BFI_IOC_OP)) {
1410

J
Jing Huang 已提交
1411
		/*
1412 1413 1414 1415 1416
		 * When using MSI-X any pending firmware ready event should
		 * be flushed. Otherwise MSI-X interrupts are not delivered.
		 */
		bfa_ioc_msgflush(ioc);
		ioc->cbfn->reset_cbfn(ioc->bfa);
K
Krishna Gudipati 已提交
1417
		bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_FWREADY);
1418 1419 1420
		return;
	}

J
Jing Huang 已提交
1421
	/*
1422 1423
	 * Initialize the h/w for any other states.
	 */
K
Krishna Gudipati 已提交
1424
	bfa_ioc_boot(ioc, boot_type, boot_env);
1425 1426 1427 1428 1429
}

static void
bfa_ioc_timeout(void *ioc_arg)
{
K
Krishna Gudipati 已提交
1430
	struct bfa_ioc_s  *ioc = (struct bfa_ioc_s *) ioc_arg;
1431 1432 1433 1434 1435 1436 1437 1438

	bfa_trc(ioc, 0);
	bfa_fsm_send_event(ioc, IOC_E_TIMEOUT);
}

void
bfa_ioc_mbox_send(struct bfa_ioc_s *ioc, void *ioc_msg, int len)
{
K
Krishna Gudipati 已提交
1439 1440
	u32 *msgp = (u32 *) ioc_msg;
	u32 i;
1441 1442 1443 1444 1445 1446 1447 1448 1449 1450

	bfa_trc(ioc, msgp[0]);
	bfa_trc(ioc, len);

	bfa_assert(len <= BFI_IOC_MSGLEN_MAX);

	/*
	 * first write msg to mailbox registers
	 */
	for (i = 0; i < len / sizeof(u32); i++)
1451 1452
		writel(cpu_to_le32(msgp[i]),
			ioc->ioc_regs.hfn_mbox + i * sizeof(u32));
1453 1454

	for (; i < BFI_IOC_MSGLEN_MAX / sizeof(u32); i++)
1455
		writel(0, ioc->ioc_regs.hfn_mbox + i * sizeof(u32));
1456 1457 1458 1459

	/*
	 * write 1 to mailbox CMD to trigger LPU event
	 */
1460 1461
	writel(1, ioc->ioc_regs.hfn_mbox_cmd);
	(void) readl(ioc->ioc_regs.hfn_mbox_cmd);
1462 1463 1464 1465 1466 1467
}

static void
bfa_ioc_send_enable(struct bfa_ioc_s *ioc)
{
	struct bfi_ioc_ctrl_req_s enable_req;
K
Krishna Gudipati 已提交
1468
	struct bfa_timeval_s tv;
1469 1470 1471 1472

	bfi_h2i_set(enable_req.mh, BFI_MC_IOC, BFI_IOC_H2I_ENABLE_REQ,
		    bfa_ioc_portid(ioc));
	enable_req.ioc_class = ioc->ioc_mc;
K
Krishna Gudipati 已提交
1473
	bfa_os_gettimeofday(&tv);
1474
	enable_req.tv_sec = be32_to_cpu(tv.tv_sec);
1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490
	bfa_ioc_mbox_send(ioc, &enable_req, sizeof(struct bfi_ioc_ctrl_req_s));
}

static void
bfa_ioc_send_disable(struct bfa_ioc_s *ioc)
{
	struct bfi_ioc_ctrl_req_s disable_req;

	bfi_h2i_set(disable_req.mh, BFI_MC_IOC, BFI_IOC_H2I_DISABLE_REQ,
		    bfa_ioc_portid(ioc));
	bfa_ioc_mbox_send(ioc, &disable_req, sizeof(struct bfi_ioc_ctrl_req_s));
}

static void
bfa_ioc_send_getattr(struct bfa_ioc_s *ioc)
{
K
Krishna Gudipati 已提交
1491
	struct bfi_ioc_getattr_req_s	attr_req;
1492 1493 1494 1495 1496 1497 1498 1499 1500 1501

	bfi_h2i_set(attr_req.mh, BFI_MC_IOC, BFI_IOC_H2I_GETATTR_REQ,
		    bfa_ioc_portid(ioc));
	bfa_dma_be_addr_set(attr_req.attr_addr, ioc->attr_dma.pa);
	bfa_ioc_mbox_send(ioc, &attr_req, sizeof(attr_req));
}

static void
bfa_ioc_hb_check(void *cbarg)
{
1502
	struct bfa_ioc_s  *ioc = cbarg;
K
Krishna Gudipati 已提交
1503
	u32	hb_count;
1504

1505
	hb_count = readl(ioc->ioc_regs.heartbeat);
1506
	if (ioc->hb_count == hb_count) {
K
Krishna Gudipati 已提交
1507
		printk(KERN_CRIT "Firmware heartbeat failure at %d", hb_count);
1508 1509
		bfa_ioc_recover(ioc);
		return;
1510 1511
	} else {
		ioc->hb_count = hb_count;
1512 1513 1514
	}

	bfa_ioc_mbox_poll(ioc);
K
Krishna Gudipati 已提交
1515
	bfa_hb_timer_start(ioc);
1516 1517 1518 1519 1520
}

static void
bfa_ioc_hb_monitor(struct bfa_ioc_s *ioc)
{
1521
	ioc->hb_count = readl(ioc->ioc_regs.heartbeat);
K
Krishna Gudipati 已提交
1522
	bfa_hb_timer_start(ioc);
1523 1524 1525 1526 1527
}

static void
bfa_ioc_hb_stop(struct bfa_ioc_s *ioc)
{
K
Krishna Gudipati 已提交
1528
	bfa_hb_timer_stop(ioc);
1529 1530
}

K
Krishna Gudipati 已提交
1531

J
Jing Huang 已提交
1532
/*
K
Krishna Gudipati 已提交
1533
 *	Initiate a full firmware download.
1534 1535 1536
 */
static void
bfa_ioc_download_fw(struct bfa_ioc_s *ioc, u32 boot_type,
K
Krishna Gudipati 已提交
1537
		    u32 boot_env)
1538
{
K
Krishna Gudipati 已提交
1539 1540 1541 1542 1543
	u32 *fwimg;
	u32 pgnum, pgoff;
	u32 loff = 0;
	u32 chunkno = 0;
	u32 i;
1544

J
Jing Huang 已提交
1545
	/*
1546 1547 1548 1549
	 * Initialize LMEM first before code download
	 */
	bfa_ioc_lmem_init(ioc);

K
Krishna Gudipati 已提交
1550 1551
	bfa_trc(ioc, bfa_cb_image_get_size(BFA_IOC_FWIMG_TYPE(ioc)));
	fwimg = bfa_cb_image_get_chunk(BFA_IOC_FWIMG_TYPE(ioc), chunkno);
1552 1553 1554 1555

	pgnum = bfa_ioc_smem_pgnum(ioc, loff);
	pgoff = bfa_ioc_smem_pgoff(ioc, loff);

1556
	writel(pgnum, ioc->ioc_regs.host_page_num_fn);
1557

K
Krishna Gudipati 已提交
1558
	for (i = 0; i < bfa_cb_image_get_size(BFA_IOC_FWIMG_TYPE(ioc)); i++) {
1559

1560 1561
		if (BFA_IOC_FLASH_CHUNK_NO(i) != chunkno) {
			chunkno = BFA_IOC_FLASH_CHUNK_NO(i);
K
Krishna Gudipati 已提交
1562
			fwimg = bfa_cb_image_get_chunk(BFA_IOC_FWIMG_TYPE(ioc),
1563
					BFA_IOC_FLASH_CHUNK_ADDR(chunkno));
1564 1565
		}

J
Jing Huang 已提交
1566
		/*
1567 1568 1569
		 * write smem
		 */
		bfa_mem_write(ioc->ioc_regs.smem_page_start, loff,
1570
			      fwimg[BFA_IOC_FLASH_OFFSET_IN_CHUNK(i)]);
1571 1572 1573

		loff += sizeof(u32);

J
Jing Huang 已提交
1574
		/*
1575 1576 1577 1578 1579
		 * handle page offset wrap around
		 */
		loff = PSS_SMEM_PGOFF(loff);
		if (loff == 0) {
			pgnum++;
1580
			writel(pgnum, ioc->ioc_regs.host_page_num_fn);
1581 1582 1583
		}
	}

1584
	writel(bfa_ioc_smem_pgnum(ioc, 0), ioc->ioc_regs.host_page_num_fn);
1585 1586 1587

	/*
	 * Set boot type and boot param at the end.
K
Krishna Gudipati 已提交
1588
	*/
1589
	bfa_mem_write(ioc->ioc_regs.smem_page_start, BFI_BOOT_TYPE_OFF,
1590
			swab32(boot_type));
K
Krishna Gudipati 已提交
1591
	bfa_mem_write(ioc->ioc_regs.smem_page_start, BFI_BOOT_LOADER_OFF,
1592
			swab32(boot_env));
K
Krishna Gudipati 已提交
1593 1594 1595 1596 1597 1598 1599 1600
}

static void
bfa_ioc_reset(struct bfa_ioc_s *ioc, bfa_boolean_t force)
{
	bfa_ioc_hwinit(ioc, force);
}

J
Jing Huang 已提交
1601
/*
K
Krishna Gudipati 已提交
1602 1603 1604 1605 1606 1607 1608
 * Update BFA configuration from firmware configuration.
 */
static void
bfa_ioc_getattr_reply(struct bfa_ioc_s *ioc)
{
	struct bfi_ioc_attr_s	*attr = ioc->attr;

1609 1610 1611
	attr->adapter_prop  = be32_to_cpu(attr->adapter_prop);
	attr->card_type     = be32_to_cpu(attr->card_type);
	attr->maxfrsize	    = be16_to_cpu(attr->maxfrsize);
K
Krishna Gudipati 已提交
1612 1613 1614 1615

	bfa_fsm_send_event(ioc, IOC_E_FWRSP_GETATTR);
}

J
Jing Huang 已提交
1616
/*
K
Krishna Gudipati 已提交
1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631
 * Attach time initialization of mbox logic.
 */
static void
bfa_ioc_mbox_attach(struct bfa_ioc_s *ioc)
{
	struct bfa_ioc_mbox_mod_s	*mod = &ioc->mbox_mod;
	int	mc;

	INIT_LIST_HEAD(&mod->cmd_q);
	for (mc = 0; mc < BFI_MC_MAX; mc++) {
		mod->mbhdlr[mc].cbfn = NULL;
		mod->mbhdlr[mc].cbarg = ioc->bfa;
	}
}

J
Jing Huang 已提交
1632
/*
K
Krishna Gudipati 已提交
1633 1634 1635 1636 1637 1638 1639 1640 1641
 * Mbox poll timer -- restarts any pending mailbox requests.
 */
static void
bfa_ioc_mbox_poll(struct bfa_ioc_s *ioc)
{
	struct bfa_ioc_mbox_mod_s	*mod = &ioc->mbox_mod;
	struct bfa_mbox_cmd_s		*cmd;
	u32			stat;

J
Jing Huang 已提交
1642
	/*
K
Krishna Gudipati 已提交
1643 1644 1645 1646 1647
	 * If no command pending, do nothing
	 */
	if (list_empty(&mod->cmd_q))
		return;

J
Jing Huang 已提交
1648
	/*
K
Krishna Gudipati 已提交
1649 1650
	 * If previous command is not yet fetched by firmware, do nothing
	 */
1651
	stat = readl(ioc->ioc_regs.hfn_mbox_cmd);
K
Krishna Gudipati 已提交
1652 1653 1654
	if (stat)
		return;

J
Jing Huang 已提交
1655
	/*
K
Krishna Gudipati 已提交
1656 1657 1658 1659 1660 1661
	 * Enqueue command to firmware.
	 */
	bfa_q_deq(&mod->cmd_q, &cmd);
	bfa_ioc_mbox_send(ioc, cmd->msg, sizeof(cmd->msg));
}

J
Jing Huang 已提交
1662
/*
K
Krishna Gudipati 已提交
1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674
 * Cleanup any pending requests.
 */
static void
bfa_ioc_mbox_hbfail(struct bfa_ioc_s *ioc)
{
	struct bfa_ioc_mbox_mod_s	*mod = &ioc->mbox_mod;
	struct bfa_mbox_cmd_s		*cmd;

	while (!list_empty(&mod->cmd_q))
		bfa_q_deq(&mod->cmd_q, &cmd);
}

J
Jing Huang 已提交
1675
/*
K
Krishna Gudipati 已提交
1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703
 * Read data from SMEM to host through PCI memmap
 *
 * @param[in]	ioc	memory for IOC
 * @param[in]	tbuf	app memory to store data from smem
 * @param[in]	soff	smem offset
 * @param[in]	sz	size of smem in bytes
 */
static bfa_status_t
bfa_ioc_smem_read(struct bfa_ioc_s *ioc, void *tbuf, u32 soff, u32 sz)
{
	u32 pgnum, loff, r32;
	int i, len;
	u32 *buf = tbuf;

	pgnum = bfa_ioc_smem_pgnum(ioc, soff);
	loff = bfa_ioc_smem_pgoff(ioc, soff);
	bfa_trc(ioc, pgnum);
	bfa_trc(ioc, loff);
	bfa_trc(ioc, sz);

	/*
	 *  Hold semaphore to serialize pll init and fwtrc.
	 */
	if (BFA_FALSE == bfa_ioc_sem_get(ioc->ioc_regs.ioc_init_sem_reg)) {
		bfa_trc(ioc, 0);
		return BFA_STATUS_FAILED;
	}

1704
	writel(pgnum, ioc->ioc_regs.host_page_num_fn);
K
Krishna Gudipati 已提交
1705 1706 1707 1708 1709

	len = sz/sizeof(u32);
	bfa_trc(ioc, len);
	for (i = 0; i < len; i++) {
		r32 = bfa_mem_read(ioc->ioc_regs.smem_page_start, loff);
1710
		buf[i] = be32_to_cpu(r32);
K
Krishna Gudipati 已提交
1711 1712
		loff += sizeof(u32);

J
Jing Huang 已提交
1713
		/*
K
Krishna Gudipati 已提交
1714 1715 1716 1717 1718
		 * handle page offset wrap around
		 */
		loff = PSS_SMEM_PGOFF(loff);
		if (loff == 0) {
			pgnum++;
1719
			writel(pgnum, ioc->ioc_regs.host_page_num_fn);
K
Krishna Gudipati 已提交
1720 1721
		}
	}
1722
	writel(bfa_ioc_smem_pgnum(ioc, 0), ioc->ioc_regs.host_page_num_fn);
K
Krishna Gudipati 已提交
1723 1724 1725 1726 1727 1728 1729 1730 1731
	/*
	 *  release semaphore.
	 */
	bfa_ioc_sem_release(ioc->ioc_regs.ioc_init_sem_reg);

	bfa_trc(ioc, pgnum);
	return BFA_STATUS_OK;
}

J
Jing Huang 已提交
1732
/*
K
Krishna Gudipati 已提交
1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758
 * Clear SMEM data from host through PCI memmap
 *
 * @param[in]	ioc	memory for IOC
 * @param[in]	soff	smem offset
 * @param[in]	sz	size of smem in bytes
 */
static bfa_status_t
bfa_ioc_smem_clr(struct bfa_ioc_s *ioc, u32 soff, u32 sz)
{
	int i, len;
	u32 pgnum, loff;

	pgnum = bfa_ioc_smem_pgnum(ioc, soff);
	loff = bfa_ioc_smem_pgoff(ioc, soff);
	bfa_trc(ioc, pgnum);
	bfa_trc(ioc, loff);
	bfa_trc(ioc, sz);

	/*
	 *  Hold semaphore to serialize pll init and fwtrc.
	 */
	if (BFA_FALSE == bfa_ioc_sem_get(ioc->ioc_regs.ioc_init_sem_reg)) {
		bfa_trc(ioc, 0);
		return BFA_STATUS_FAILED;
	}

1759
	writel(pgnum, ioc->ioc_regs.host_page_num_fn);
K
Krishna Gudipati 已提交
1760 1761 1762 1763 1764 1765 1766

	len = sz/sizeof(u32); /* len in words */
	bfa_trc(ioc, len);
	for (i = 0; i < len; i++) {
		bfa_mem_write(ioc->ioc_regs.smem_page_start, loff, 0);
		loff += sizeof(u32);

J
Jing Huang 已提交
1767
		/*
K
Krishna Gudipati 已提交
1768 1769 1770 1771 1772
		 * handle page offset wrap around
		 */
		loff = PSS_SMEM_PGOFF(loff);
		if (loff == 0) {
			pgnum++;
1773
			writel(pgnum, ioc->ioc_regs.host_page_num_fn);
K
Krishna Gudipati 已提交
1774 1775
		}
	}
1776
	writel(bfa_ioc_smem_pgnum(ioc, 0), ioc->ioc_regs.host_page_num_fn);
K
Krishna Gudipati 已提交
1777 1778 1779 1780 1781 1782 1783

	/*
	 *  release semaphore.
	 */
	bfa_ioc_sem_release(ioc->ioc_regs.ioc_init_sem_reg);
	bfa_trc(ioc, pgnum);
	return BFA_STATUS_OK;
1784 1785
}

J
Jing Huang 已提交
1786
/*
K
Krishna Gudipati 已提交
1787 1788
 * hal iocpf to ioc interface
 */
1789
static void
K
Krishna Gudipati 已提交
1790
bfa_ioc_pf_enabled(struct bfa_ioc_s *ioc)
1791
{
K
Krishna Gudipati 已提交
1792
	bfa_fsm_send_event(ioc, IOC_E_ENABLED);
1793 1794 1795
}

static void
K
Krishna Gudipati 已提交
1796
bfa_ioc_pf_disabled(struct bfa_ioc_s *ioc)
1797
{
K
Krishna Gudipati 已提交
1798
	bfa_fsm_send_event(ioc, IOC_E_DISABLED);
1799 1800 1801
}

static void
K
Krishna Gudipati 已提交
1802
bfa_ioc_pf_failed(struct bfa_ioc_s *ioc)
1803
{
K
Krishna Gudipati 已提交
1804
	bfa_fsm_send_event(ioc, IOC_E_FAILED);
1805 1806 1807
}

static void
K
Krishna Gudipati 已提交
1808
bfa_ioc_pf_fwmismatch(struct bfa_ioc_s *ioc)
1809
{
K
Krishna Gudipati 已提交
1810
	struct bfad_s *bfad = (struct bfad_s *)ioc->bfa->bfad;
J
Jing Huang 已提交
1811
	/*
K
Krishna Gudipati 已提交
1812
	 * Provide enable completion callback.
1813
	 */
K
Krishna Gudipati 已提交
1814
	ioc->cbfn->enable_cbfn(ioc->bfa, BFA_STATUS_IOC_FAILURE);
1815
	BFA_LOG(KERN_WARNING, bfad, bfa_log_level,
K
Krishna Gudipati 已提交
1816 1817 1818
		"Running firmware version is incompatible "
		"with the driver version\n");
}
1819 1820 1821



J
Jing Huang 已提交
1822
/*
K
Krishna Gudipati 已提交
1823
 *  hal_ioc_public
1824
 */
K
Krishna Gudipati 已提交
1825 1826 1827

bfa_status_t
bfa_ioc_pll_init(struct bfa_ioc_s *ioc)
1828 1829
{

K
Krishna Gudipati 已提交
1830 1831 1832 1833
	/*
	 *  Hold semaphore so that nobody can access the chip during init.
	 */
	bfa_ioc_sem_get(ioc->ioc_regs.ioc_init_sem_reg);
1834

K
Krishna Gudipati 已提交
1835 1836 1837 1838 1839 1840 1841 1842 1843 1844
	bfa_ioc_pll_init_asic(ioc);

	ioc->pllinit = BFA_TRUE;
	/*
	 *  release semaphore.
	 */
	bfa_ioc_sem_release(ioc->ioc_regs.ioc_init_sem_reg);

	return BFA_STATUS_OK;
}
1845

J
Jing Huang 已提交
1846
/*
1847 1848 1849 1850
 * Interface used by diag module to do firmware boot with memory test
 * as the entry vector.
 */
void
K
Krishna Gudipati 已提交
1851
bfa_ioc_boot(struct bfa_ioc_s *ioc, u32 boot_type, u32 boot_env)
1852
{
1853
	void __iomem *rb;
1854 1855 1856 1857 1858 1859

	bfa_ioc_stats(ioc, ioc_boots);

	if (bfa_ioc_pll_init(ioc) != BFA_STATUS_OK)
		return;

J
Jing Huang 已提交
1860
	/*
1861 1862 1863
	 * Initialize IOC state of all functions on a chip reset.
	 */
	rb = ioc->pcidev.pci_bar_kva;
K
Krishna Gudipati 已提交
1864
	if (boot_type == BFI_BOOT_TYPE_MEMTEST) {
1865 1866
		writel(BFI_IOC_MEMTEST, (rb + BFA_IOC0_STATE_REG));
		writel(BFI_IOC_MEMTEST, (rb + BFA_IOC1_STATE_REG));
1867
	} else {
1868 1869
		writel(BFI_IOC_INITING, (rb + BFA_IOC0_STATE_REG));
		writel(BFI_IOC_INITING, (rb + BFA_IOC1_STATE_REG));
1870 1871
	}

J
Jing Huang 已提交
1872
	bfa_ioc_msgflush(ioc);
K
Krishna Gudipati 已提交
1873
	bfa_ioc_download_fw(ioc, boot_type, boot_env);
1874

J
Jing Huang 已提交
1875
	/*
1876 1877 1878 1879 1880 1881
	 * Enable interrupts just before starting LPU
	 */
	ioc->cbfn->reset_cbfn(ioc->bfa);
	bfa_ioc_lpu_start(ioc);
}

J
Jing Huang 已提交
1882
/*
1883 1884 1885 1886 1887
 * Enable/disable IOC failure auto recovery.
 */
void
bfa_ioc_auto_recover(bfa_boolean_t auto_recover)
{
1888
	bfa_auto_recover = auto_recover;
1889 1890 1891
}


K
Krishna Gudipati 已提交
1892

1893 1894 1895 1896 1897 1898
bfa_boolean_t
bfa_ioc_is_operational(struct bfa_ioc_s *ioc)
{
	return bfa_fsm_cmp_state(ioc, bfa_ioc_sm_op);
}

K
Krishna Gudipati 已提交
1899 1900 1901
bfa_boolean_t
bfa_ioc_is_initialized(struct bfa_ioc_s *ioc)
{
1902
	u32 r32 = readl(ioc->ioc_regs.ioc_fwstate);
K
Krishna Gudipati 已提交
1903 1904 1905 1906 1907 1908

	return ((r32 != BFI_IOC_UNINIT) &&
		(r32 != BFI_IOC_INITING) &&
		(r32 != BFI_IOC_MEMTEST));
}

1909 1910 1911
void
bfa_ioc_msgget(struct bfa_ioc_s *ioc, void *mbmsg)
{
K
Krishna Gudipati 已提交
1912 1913 1914
	u32	*msgp = mbmsg;
	u32	r32;
	int		i;
1915

J
Jing Huang 已提交
1916
	/*
1917 1918 1919 1920
	 * read the MBOX msg
	 */
	for (i = 0; i < (sizeof(union bfi_ioc_i2h_msg_u) / sizeof(u32));
	     i++) {
1921
		r32 = readl(ioc->ioc_regs.lpu_mbox +
1922
				   i * sizeof(u32));
1923
		msgp[i] = cpu_to_be32(r32);
1924 1925
	}

J
Jing Huang 已提交
1926
	/*
1927 1928
	 * turn off mailbox interrupt by clearing mailbox status
	 */
1929 1930
	writel(1, ioc->ioc_regs.lpu_mbox_cmd);
	readl(ioc->ioc_regs.lpu_mbox_cmd);
1931 1932 1933 1934 1935
}

void
bfa_ioc_isr(struct bfa_ioc_s *ioc, struct bfi_mbmsg_s *m)
{
K
Krishna Gudipati 已提交
1936 1937
	union bfi_ioc_i2h_msg_u	*msg;
	struct bfa_iocpf_s *iocpf = &ioc->iocpf;
1938

K
Krishna Gudipati 已提交
1939
	msg = (union bfi_ioc_i2h_msg_u *) m;
1940 1941 1942 1943 1944 1945 1946 1947

	bfa_ioc_stats(ioc, ioc_isrs);

	switch (msg->mh.msg_id) {
	case BFI_IOC_I2H_HBEAT:
		break;

	case BFI_IOC_I2H_READY_EVENT:
K
Krishna Gudipati 已提交
1948
		bfa_fsm_send_event(iocpf, IOCPF_E_FWREADY);
1949 1950 1951
		break;

	case BFI_IOC_I2H_ENABLE_REPLY:
K
Krishna Gudipati 已提交
1952
		bfa_fsm_send_event(iocpf, IOCPF_E_FWRSP_ENABLE);
1953 1954 1955
		break;

	case BFI_IOC_I2H_DISABLE_REPLY:
K
Krishna Gudipati 已提交
1956
		bfa_fsm_send_event(iocpf, IOCPF_E_FWRSP_DISABLE);
1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968
		break;

	case BFI_IOC_I2H_GETATTR_REPLY:
		bfa_ioc_getattr_reply(ioc);
		break;

	default:
		bfa_trc(ioc, msg->mh.msg_id);
		bfa_assert(0);
	}
}

J
Jing Huang 已提交
1969
/*
1970 1971 1972 1973 1974 1975 1976
 * IOC attach time initialization and setup.
 *
 * @param[in]	ioc	memory for IOC
 * @param[in]	bfa	driver instance structure
 */
void
bfa_ioc_attach(struct bfa_ioc_s *ioc, void *bfa, struct bfa_ioc_cbfn_s *cbfn,
K
Krishna Gudipati 已提交
1977 1978 1979 1980 1981 1982 1983
	       struct bfa_timer_mod_s *timer_mod)
{
	ioc->bfa	= bfa;
	ioc->cbfn	= cbfn;
	ioc->timer_mod	= timer_mod;
	ioc->fcmode	= BFA_FALSE;
	ioc->pllinit	= BFA_FALSE;
1984
	ioc->dbg_fwsave_once = BFA_TRUE;
K
Krishna Gudipati 已提交
1985
	ioc->iocpf.ioc	= ioc;
1986 1987 1988 1989

	bfa_ioc_mbox_attach(ioc);
	INIT_LIST_HEAD(&ioc->hb_notify_q);

K
Krishna Gudipati 已提交
1990 1991
	bfa_fsm_set_state(ioc, bfa_ioc_sm_uninit);
	bfa_fsm_send_event(ioc, IOC_E_RESET);
1992 1993
}

J
Jing Huang 已提交
1994
/*
1995 1996 1997 1998 1999 2000 2001 2002
 * Driver detach time IOC cleanup.
 */
void
bfa_ioc_detach(struct bfa_ioc_s *ioc)
{
	bfa_fsm_send_event(ioc, IOC_E_DETACH);
}

J
Jing Huang 已提交
2003
/*
2004 2005 2006 2007 2008 2009 2010 2011
 * Setup IOC PCI properties.
 *
 * @param[in]	pcidev	PCI device information for this IOC
 */
void
bfa_ioc_pci_init(struct bfa_ioc_s *ioc, struct bfa_pcidev_s *pcidev,
		 enum bfi_mclass mc)
{
K
Krishna Gudipati 已提交
2012 2013 2014 2015
	ioc->ioc_mc	= mc;
	ioc->pcidev	= *pcidev;
	ioc->ctdev	= bfa_asic_id_ct(ioc->pcidev.device_id);
	ioc->cna	= ioc->ctdev && !ioc->fcmode;
2016

J
Jing Huang 已提交
2017
	/*
2018 2019 2020 2021 2022 2023 2024
	 * Set asic specific interfaces. See bfa_ioc_cb.c and bfa_ioc_ct.c
	 */
	if (ioc->ctdev)
		bfa_ioc_set_ct_hwif(ioc);
	else
		bfa_ioc_set_cb_hwif(ioc);

2025 2026 2027 2028
	bfa_ioc_map_port(ioc);
	bfa_ioc_reg_init(ioc);
}

J
Jing Huang 已提交
2029
/*
2030 2031 2032 2033 2034 2035
 * Initialize IOC dma memory
 *
 * @param[in]	dm_kva	kernel virtual address of IOC dma memory
 * @param[in]	dm_pa	physical address of IOC dma memory
 */
void
K
Krishna Gudipati 已提交
2036
bfa_ioc_mem_claim(struct bfa_ioc_s *ioc,  u8 *dm_kva, u64 dm_pa)
2037
{
J
Jing Huang 已提交
2038
	/*
2039 2040 2041 2042
	 * dma memory for firmware attribute
	 */
	ioc->attr_dma.kva = dm_kva;
	ioc->attr_dma.pa = dm_pa;
K
Krishna Gudipati 已提交
2043
	ioc->attr = (struct bfi_ioc_attr_s *) dm_kva;
2044 2045
}

J
Jing Huang 已提交
2046
/*
2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070
 * Return size of dma memory required.
 */
u32
bfa_ioc_meminfo(void)
{
	return BFA_ROUNDUP(sizeof(struct bfi_ioc_attr_s), BFA_DMA_ALIGN_SZ);
}

void
bfa_ioc_enable(struct bfa_ioc_s *ioc)
{
	bfa_ioc_stats(ioc, ioc_enables);
	ioc->dbg_fwsave_once = BFA_TRUE;

	bfa_fsm_send_event(ioc, IOC_E_ENABLE);
}

void
bfa_ioc_disable(struct bfa_ioc_s *ioc)
{
	bfa_ioc_stats(ioc, ioc_disables);
	bfa_fsm_send_event(ioc, IOC_E_DISABLE);
}

J
Jing Huang 已提交
2071
/*
2072 2073 2074 2075 2076 2077 2078 2079 2080
 * Returns memory required for saving firmware trace in case of crash.
 * Driver must call this interface to allocate memory required for
 * automatic saving of firmware trace. Driver should call
 * bfa_ioc_debug_memclaim() right after bfa_ioc_attach() to setup this
 * trace memory.
 */
int
bfa_ioc_debug_trcsz(bfa_boolean_t auto_recover)
{
K
Krishna Gudipati 已提交
2081
	return (auto_recover) ? BFA_DBG_FWTRC_LEN : 0;
2082 2083
}

J
Jing Huang 已提交
2084
/*
2085 2086 2087 2088 2089 2090
 * Initialize memory for saving firmware trace. Driver must initialize
 * trace memory before call bfa_ioc_enable().
 */
void
bfa_ioc_debug_memclaim(struct bfa_ioc_s *ioc, void *dbg_fwsave)
{
K
Krishna Gudipati 已提交
2091 2092
	ioc->dbg_fwsave	    = dbg_fwsave;
	ioc->dbg_fwsave_len = bfa_ioc_debug_trcsz(ioc->iocpf.auto_recover);
2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106
}

u32
bfa_ioc_smem_pgnum(struct bfa_ioc_s *ioc, u32 fmaddr)
{
	return PSS_SMEM_PGNUM(ioc->ioc_regs.smem_pg0, fmaddr);
}

u32
bfa_ioc_smem_pgoff(struct bfa_ioc_s *ioc, u32 fmaddr)
{
	return PSS_SMEM_PGOFF(fmaddr);
}

J
Jing Huang 已提交
2107
/*
2108 2109 2110 2111 2112 2113 2114 2115
 * Register mailbox message handler functions
 *
 * @param[in]	ioc		IOC instance
 * @param[in]	mcfuncs		message class handler functions
 */
void
bfa_ioc_mbox_register(struct bfa_ioc_s *ioc, bfa_ioc_mbox_mcfunc_t *mcfuncs)
{
K
Krishna Gudipati 已提交
2116 2117
	struct bfa_ioc_mbox_mod_s	*mod = &ioc->mbox_mod;
	int				mc;
2118 2119 2120 2121 2122

	for (mc = 0; mc < BFI_MC_MAX; mc++)
		mod->mbhdlr[mc].cbfn = mcfuncs[mc];
}

J
Jing Huang 已提交
2123
/*
2124 2125 2126 2127 2128 2129
 * Register mailbox message handler function, to be called by common modules
 */
void
bfa_ioc_mbox_regisr(struct bfa_ioc_s *ioc, enum bfi_mclass mc,
		    bfa_ioc_mbox_mcfunc_t cbfn, void *cbarg)
{
K
Krishna Gudipati 已提交
2130
	struct bfa_ioc_mbox_mod_s	*mod = &ioc->mbox_mod;
2131

K
Krishna Gudipati 已提交
2132 2133
	mod->mbhdlr[mc].cbfn	= cbfn;
	mod->mbhdlr[mc].cbarg	= cbarg;
2134 2135
}

J
Jing Huang 已提交
2136
/*
2137 2138 2139 2140 2141 2142 2143 2144 2145
 * Queue a mailbox command request to firmware. Waits if mailbox is busy.
 * Responsibility of caller to serialize
 *
 * @param[in]	ioc	IOC instance
 * @param[i]	cmd	Mailbox command
 */
void
bfa_ioc_mbox_queue(struct bfa_ioc_s *ioc, struct bfa_mbox_cmd_s *cmd)
{
K
Krishna Gudipati 已提交
2146 2147
	struct bfa_ioc_mbox_mod_s	*mod = &ioc->mbox_mod;
	u32			stat;
2148

J
Jing Huang 已提交
2149
	/*
2150 2151 2152 2153 2154 2155 2156
	 * If a previous command is pending, queue new command
	 */
	if (!list_empty(&mod->cmd_q)) {
		list_add_tail(&cmd->qe, &mod->cmd_q);
		return;
	}

J
Jing Huang 已提交
2157
	/*
2158 2159
	 * If mailbox is busy, queue command for poll timer
	 */
2160
	stat = readl(ioc->ioc_regs.hfn_mbox_cmd);
2161 2162 2163 2164 2165
	if (stat) {
		list_add_tail(&cmd->qe, &mod->cmd_q);
		return;
	}

J
Jing Huang 已提交
2166
	/*
2167 2168 2169 2170 2171
	 * mailbox is free -- queue command to firmware
	 */
	bfa_ioc_mbox_send(ioc, cmd->msg, sizeof(cmd->msg));
}

J
Jing Huang 已提交
2172
/*
2173 2174 2175 2176 2177
 * Handle mailbox interrupts
 */
void
bfa_ioc_mbox_isr(struct bfa_ioc_s *ioc)
{
K
Krishna Gudipati 已提交
2178 2179 2180
	struct bfa_ioc_mbox_mod_s	*mod = &ioc->mbox_mod;
	struct bfi_mbmsg_s		m;
	int				mc;
2181 2182 2183

	bfa_ioc_msgget(ioc, &m);

J
Jing Huang 已提交
2184
	/*
2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204
	 * Treat IOC message class as special.
	 */
	mc = m.mh.msg_class;
	if (mc == BFI_MC_IOC) {
		bfa_ioc_isr(ioc, &m);
		return;
	}

	if ((mc > BFI_MC_MAX) || (mod->mbhdlr[mc].cbfn == NULL))
		return;

	mod->mbhdlr[mc].cbfn(mod->mbhdlr[mc].cbarg, &m);
}

void
bfa_ioc_error_isr(struct bfa_ioc_s *ioc)
{
	bfa_fsm_send_event(ioc, IOC_E_HWERROR);
}

2205 2206 2207 2208 2209 2210 2211
void
bfa_ioc_set_fcmode(struct bfa_ioc_s *ioc)
{
	ioc->fcmode  = BFA_TRUE;
	ioc->port_id = bfa_ioc_pcifn(ioc);
}

J
Jing Huang 已提交
2212
/*
2213 2214 2215 2216 2217
 * return true if IOC is disabled
 */
bfa_boolean_t
bfa_ioc_is_disabled(struct bfa_ioc_s *ioc)
{
K
Krishna Gudipati 已提交
2218 2219
	return bfa_fsm_cmp_state(ioc, bfa_ioc_sm_disabling) ||
		bfa_fsm_cmp_state(ioc, bfa_ioc_sm_disabled);
2220 2221
}

J
Jing Huang 已提交
2222
/*
2223 2224 2225 2226 2227
 * return true if IOC firmware is different.
 */
bfa_boolean_t
bfa_ioc_fw_mismatch(struct bfa_ioc_s *ioc)
{
K
Krishna Gudipati 已提交
2228 2229 2230
	return bfa_fsm_cmp_state(ioc, bfa_ioc_sm_reset) ||
		bfa_fsm_cmp_state(&ioc->iocpf, bfa_iocpf_sm_fwcheck) ||
		bfa_fsm_cmp_state(&ioc->iocpf, bfa_iocpf_sm_mismatch);
2231 2232 2233 2234 2235 2236 2237
}

#define bfa_ioc_state_disabled(__sm)		\
	(((__sm) == BFI_IOC_UNINIT) ||		\
	 ((__sm) == BFI_IOC_INITING) ||		\
	 ((__sm) == BFI_IOC_HWINIT) ||		\
	 ((__sm) == BFI_IOC_DISABLED) ||	\
2238
	 ((__sm) == BFI_IOC_FAIL) ||		\
2239 2240
	 ((__sm) == BFI_IOC_CFG_DISABLED))

J
Jing Huang 已提交
2241
/*
2242 2243 2244 2245 2246 2247
 * Check if adapter is disabled -- both IOCs should be in a disabled
 * state.
 */
bfa_boolean_t
bfa_ioc_adapter_is_disabled(struct bfa_ioc_s *ioc)
{
K
Krishna Gudipati 已提交
2248
	u32	ioc_state;
2249
	void __iomem *rb = ioc->pcidev.pci_bar_kva;
2250 2251 2252 2253

	if (!bfa_fsm_cmp_state(ioc, bfa_ioc_sm_disabled))
		return BFA_FALSE;

2254
	ioc_state = readl(rb + BFA_IOC0_STATE_REG);
2255 2256 2257
	if (!bfa_ioc_state_disabled(ioc_state))
		return BFA_FALSE;

K
Krishna Gudipati 已提交
2258
	if (ioc->pcidev.device_id != BFA_PCI_DEVICE_ID_FC_8G1P) {
2259
		ioc_state = readl(rb + BFA_IOC1_STATE_REG);
K
Krishna Gudipati 已提交
2260 2261 2262
		if (!bfa_ioc_state_disabled(ioc_state))
			return BFA_FALSE;
	}
2263 2264 2265 2266

	return BFA_TRUE;
}

J
Jing Huang 已提交
2267
/*
2268
 * Add to IOC heartbeat failure notification queue. To be used by common
K
Krishna Gudipati 已提交
2269
 * modules such as cee, port, diag.
2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282
 */
void
bfa_ioc_hbfail_register(struct bfa_ioc_s *ioc,
			struct bfa_ioc_hbfail_notify_s *notify)
{
	list_add_tail(&notify->qe, &ioc->hb_notify_q);
}

#define BFA_MFG_NAME "Brocade"
void
bfa_ioc_get_adapter_attr(struct bfa_ioc_s *ioc,
			 struct bfa_adapter_attr_s *ad_attr)
{
K
Krishna Gudipati 已提交
2283
	struct bfi_ioc_attr_s	*ioc_attr;
2284 2285

	ioc_attr = ioc->attr;
2286 2287 2288 2289 2290

	bfa_ioc_get_adapter_serial_num(ioc, ad_attr->serial_num);
	bfa_ioc_get_adapter_fw_ver(ioc, ad_attr->fw_ver);
	bfa_ioc_get_adapter_optrom_ver(ioc, ad_attr->optrom_ver);
	bfa_ioc_get_adapter_manufacturer(ioc, ad_attr->manufacturer);
2291
	memcpy(&ad_attr->vpd, &ioc_attr->vpd,
2292 2293
		      sizeof(struct bfa_mfg_vpd_s));

2294 2295
	ad_attr->nports = bfa_ioc_get_nports(ioc);
	ad_attr->max_speed = bfa_ioc_speed_sup(ioc);
2296

2297 2298 2299
	bfa_ioc_get_adapter_model(ioc, ad_attr->model);
	/* For now, model descr uses same model string */
	bfa_ioc_get_adapter_model(ioc, ad_attr->model_descr);
2300

2301 2302 2303
	ad_attr->card_type = ioc_attr->card_type;
	ad_attr->is_mezz = bfa_mfg_is_mezz(ioc_attr->card_type);

2304 2305 2306 2307 2308 2309
	if (BFI_ADAPTER_IS_SPECIAL(ioc_attr->adapter_prop))
		ad_attr->prototype = 1;
	else
		ad_attr->prototype = 0;

	ad_attr->pwwn = bfa_ioc_get_pwwn(ioc);
K
Krishna Gudipati 已提交
2310
	ad_attr->mac  = bfa_ioc_get_mac(ioc);
2311 2312 2313 2314 2315

	ad_attr->pcie_gen = ioc_attr->pcie_gen;
	ad_attr->pcie_lanes = ioc_attr->pcie_lanes;
	ad_attr->pcie_lanes_orig = ioc_attr->pcie_lanes_orig;
	ad_attr->asic_rev = ioc_attr->asic_rev;
2316 2317

	bfa_ioc_get_pci_chip_rev(ioc, ad_attr->hw_ver);
2318 2319

	ad_attr->cna_capable = ioc->cna;
K
Krishna Gudipati 已提交
2320
	ad_attr->trunk_capable = (ad_attr->nports > 1) && !ioc->cna;
2321 2322
}

2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337
enum bfa_ioc_type_e
bfa_ioc_get_type(struct bfa_ioc_s *ioc)
{
	if (!ioc->ctdev || ioc->fcmode)
		return BFA_IOC_TYPE_FC;
	else if (ioc->ioc_mc == BFI_MC_IOCFC)
		return BFA_IOC_TYPE_FCoE;
	else if (ioc->ioc_mc == BFI_MC_LL)
		return BFA_IOC_TYPE_LL;
	else {
		bfa_assert(ioc->ioc_mc == BFI_MC_LL);
		return BFA_IOC_TYPE_LL;
	}
}

2338 2339 2340
void
bfa_ioc_get_adapter_serial_num(struct bfa_ioc_s *ioc, char *serial_num)
{
2341 2342
	memset((void *)serial_num, 0, BFA_ADAPTER_SERIAL_NUM_LEN);
	memcpy((void *)serial_num,
2343 2344 2345 2346 2347 2348 2349
			(void *)ioc->attr->brcd_serialnum,
			BFA_ADAPTER_SERIAL_NUM_LEN);
}

void
bfa_ioc_get_adapter_fw_ver(struct bfa_ioc_s *ioc, char *fw_ver)
{
2350 2351
	memset((void *)fw_ver, 0, BFA_VERSION_LEN);
	memcpy(fw_ver, ioc->attr->fw_version, BFA_VERSION_LEN);
2352 2353 2354 2355 2356 2357 2358
}

void
bfa_ioc_get_pci_chip_rev(struct bfa_ioc_s *ioc, char *chip_rev)
{
	bfa_assert(chip_rev);

2359
	memset((void *)chip_rev, 0, BFA_IOC_CHIP_REV_LEN);
2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371

	chip_rev[0] = 'R';
	chip_rev[1] = 'e';
	chip_rev[2] = 'v';
	chip_rev[3] = '-';
	chip_rev[4] = ioc->attr->asic_rev;
	chip_rev[5] = '\0';
}

void
bfa_ioc_get_adapter_optrom_ver(struct bfa_ioc_s *ioc, char *optrom_ver)
{
2372 2373
	memset((void *)optrom_ver, 0, BFA_VERSION_LEN);
	memcpy(optrom_ver, ioc->attr->optrom_version,
K
Krishna Gudipati 已提交
2374
		      BFA_VERSION_LEN);
2375 2376 2377 2378 2379
}

void
bfa_ioc_get_adapter_manufacturer(struct bfa_ioc_s *ioc, char *manufacturer)
{
2380 2381
	memset((void *)manufacturer, 0, BFA_ADAPTER_MFG_NAME_LEN);
	memcpy(manufacturer, BFA_MFG_NAME, BFA_ADAPTER_MFG_NAME_LEN);
2382 2383 2384 2385 2386
}

void
bfa_ioc_get_adapter_model(struct bfa_ioc_s *ioc, char *model)
{
K
Krishna Gudipati 已提交
2387
	struct bfi_ioc_attr_s	*ioc_attr;
2388 2389

	bfa_assert(model);
2390
	memset((void *)model, 0, BFA_ADAPTER_MODEL_NAME_LEN);
2391 2392 2393

	ioc_attr = ioc->attr;

J
Jing Huang 已提交
2394
	/*
2395 2396
	 * model name
	 */
2397
	snprintf(model, BFA_ADAPTER_MODEL_NAME_LEN, "%s-%u",
K
Krishna Gudipati 已提交
2398
		BFA_MFG_NAME, ioc_attr->card_type);
2399 2400 2401 2402 2403
}

enum bfa_ioc_state
bfa_ioc_get_state(struct bfa_ioc_s *ioc)
{
K
Krishna Gudipati 已提交
2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438
	enum bfa_iocpf_state iocpf_st;
	enum bfa_ioc_state ioc_st = bfa_sm_to_state(ioc_sm_table, ioc->fsm);

	if (ioc_st == BFA_IOC_ENABLING ||
		ioc_st == BFA_IOC_FAIL || ioc_st == BFA_IOC_INITFAIL) {

		iocpf_st = bfa_sm_to_state(iocpf_sm_table, ioc->iocpf.fsm);

		switch (iocpf_st) {
		case BFA_IOCPF_SEMWAIT:
			ioc_st = BFA_IOC_SEMWAIT;
			break;

		case BFA_IOCPF_HWINIT:
			ioc_st = BFA_IOC_HWINIT;
			break;

		case BFA_IOCPF_FWMISMATCH:
			ioc_st = BFA_IOC_FWMISMATCH;
			break;

		case BFA_IOCPF_FAIL:
			ioc_st = BFA_IOC_FAIL;
			break;

		case BFA_IOCPF_INITFAIL:
			ioc_st = BFA_IOC_INITFAIL;
			break;

		default:
			break;
		}
	}

	return ioc_st;
2439 2440
}

2441 2442 2443
void
bfa_ioc_get_attr(struct bfa_ioc_s *ioc, struct bfa_ioc_attr_s *ioc_attr)
{
2444
	memset((void *)ioc_attr, 0, sizeof(struct bfa_ioc_attr_s));
2445

2446
	ioc_attr->state = bfa_ioc_get_state(ioc);
2447 2448
	ioc_attr->port_id = ioc->port_id;

2449
	ioc_attr->ioc_type = bfa_ioc_get_type(ioc);
2450 2451 2452 2453 2454

	bfa_ioc_get_adapter_attr(ioc, &ioc_attr->adapter_attr);

	ioc_attr->pci_attr.device_id = ioc->pcidev.device_id;
	ioc_attr->pci_attr.pcifn = ioc->pcidev.pci_func;
2455
	bfa_ioc_get_pci_chip_rev(ioc, ioc_attr->pci_attr.chip_rev);
2456 2457
}

J
Jing Huang 已提交
2458
/*
K
Krishna Gudipati 已提交
2459
 *  hal_wwn_public
2460 2461 2462 2463
 */
wwn_t
bfa_ioc_get_pwwn(struct bfa_ioc_s *ioc)
{
J
Jing Huang 已提交
2464
	return ioc->attr->pwwn;
2465 2466 2467 2468 2469
}

wwn_t
bfa_ioc_get_nwwn(struct bfa_ioc_s *ioc)
{
J
Jing Huang 已提交
2470
	return ioc->attr->nwwn;
2471 2472 2473 2474 2475
}

u64
bfa_ioc_get_adid(struct bfa_ioc_s *ioc)
{
J
Jing Huang 已提交
2476
	return ioc->attr->mfg_pwwn;
2477 2478 2479 2480 2481
}

mac_t
bfa_ioc_get_mac(struct bfa_ioc_s *ioc)
{
J
Jing Huang 已提交
2482
	/*
K
Krishna Gudipati 已提交
2483
	 * Check the IOC type and return the appropriate MAC
J
Jing Huang 已提交
2484 2485
	 */
	if (bfa_ioc_get_type(ioc) == BFA_IOC_TYPE_FCoE)
K
Krishna Gudipati 已提交
2486
		return ioc->attr->fcoe_mac;
J
Jing Huang 已提交
2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505
	else
		return ioc->attr->mac;
}

wwn_t
bfa_ioc_get_mfg_pwwn(struct bfa_ioc_s *ioc)
{
	return ioc->attr->mfg_pwwn;
}

wwn_t
bfa_ioc_get_mfg_nwwn(struct bfa_ioc_s *ioc)
{
	return ioc->attr->mfg_nwwn;
}

mac_t
bfa_ioc_get_mfg_mac(struct bfa_ioc_s *ioc)
{
K
Krishna Gudipati 已提交
2506
	mac_t	m;
2507

K
Krishna Gudipati 已提交
2508 2509 2510 2511 2512 2513
	m = ioc->attr->mfg_mac;
	if (bfa_mfg_is_old_wwn_mac_model(ioc->attr->card_type))
		m.mac[MAC_ADDRLEN - 1] += bfa_ioc_pcifn(ioc);
	else
		bfa_mfg_increment_wwn_mac(&(m.mac[MAC_ADDRLEN-3]),
			bfa_ioc_pcifn(ioc));
2514

K
Krishna Gudipati 已提交
2515
	return m;
2516 2517 2518 2519 2520
}

bfa_boolean_t
bfa_ioc_get_fcmode(struct bfa_ioc_s *ioc)
{
J
Jing Huang 已提交
2521
	return ioc->fcmode || !bfa_asic_id_ct(ioc->pcidev.device_id);
2522 2523
}

J
Jing Huang 已提交
2524
/*
2525 2526 2527 2528 2529
 * Retrieve saved firmware trace from a prior IOC failure.
 */
bfa_status_t
bfa_ioc_debug_fwsave(struct bfa_ioc_s *ioc, void *trcdata, int *trclen)
{
K
Krishna Gudipati 已提交
2530
	int	tlen;
2531 2532 2533 2534 2535 2536 2537 2538

	if (ioc->dbg_fwsave_len == 0)
		return BFA_STATUS_ENOFSAVE;

	tlen = *trclen;
	if (tlen > ioc->dbg_fwsave_len)
		tlen = ioc->dbg_fwsave_len;

2539
	memcpy(trcdata, ioc->dbg_fwsave, tlen);
2540 2541 2542 2543
	*trclen = tlen;
	return BFA_STATUS_OK;
}

J
Jing Huang 已提交
2544
/*
2545 2546 2547 2548 2549 2550 2551 2552
 * Clear saved firmware trace
 */
void
bfa_ioc_debug_fwsave_clear(struct bfa_ioc_s *ioc)
{
	ioc->dbg_fwsave_once = BFA_TRUE;
}

J
Jing Huang 已提交
2553
/*
2554 2555 2556 2557 2558
 * Retrieve saved firmware trace from a prior IOC failure.
 */
bfa_status_t
bfa_ioc_debug_fwtrc(struct bfa_ioc_s *ioc, void *trcdata, int *trclen)
{
K
Krishna Gudipati 已提交
2559 2560 2561
	u32 loff = BFA_DBG_FWTRC_OFF(bfa_ioc_portid(ioc));
	int tlen;
	bfa_status_t status;
2562 2563 2564 2565 2566 2567 2568

	bfa_trc(ioc, *trclen);

	tlen = *trclen;
	if (tlen > BFA_DBG_FWTRC_LEN)
		tlen = BFA_DBG_FWTRC_LEN;

K
Krishna Gudipati 已提交
2569 2570 2571 2572
	status = bfa_ioc_smem_read(ioc, trcdata, loff, tlen);
	*trclen = tlen;
	return status;
}
2573

K
Krishna Gudipati 已提交
2574 2575 2576 2577 2578
static void
bfa_ioc_send_fwsync(struct bfa_ioc_s *ioc)
{
	struct bfa_mbox_cmd_s cmd;
	struct bfi_ioc_ctrl_req_s *req = (struct bfi_ioc_ctrl_req_s *) cmd.msg;
2579

K
Krishna Gudipati 已提交
2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592
	bfi_h2i_set(req->mh, BFI_MC_IOC, BFI_IOC_H2I_DBG_SYNC,
		    bfa_ioc_portid(ioc));
	req->ioc_class = ioc->ioc_mc;
	bfa_ioc_mbox_queue(ioc, &cmd);
}

static void
bfa_ioc_fwsync(struct bfa_ioc_s *ioc)
{
	u32 fwsync_iter = 1000;

	bfa_ioc_send_fwsync(ioc);

J
Jing Huang 已提交
2593
	/*
K
Krishna Gudipati 已提交
2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607
	 * After sending a fw sync mbox command wait for it to
	 * take effect.  We will not wait for a response because
	 *    1. fw_sync mbox cmd doesn't have a response.
	 *    2. Even if we implement that,  interrupts might not
	 *	 be enabled when we call this function.
	 * So, just keep checking if any mbox cmd is pending, and
	 * after waiting for a reasonable amount of time, go ahead.
	 * It is possible that fw has crashed and the mbox command
	 * is never acknowledged.
	 */
	while (bfa_ioc_mbox_cmd_pending(ioc) && fwsync_iter > 0)
		fwsync_iter--;
}

J
Jing Huang 已提交
2608
/*
K
Krishna Gudipati 已提交
2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622
 * Dump firmware smem
 */
bfa_status_t
bfa_ioc_debug_fwcore(struct bfa_ioc_s *ioc, void *buf,
				u32 *offset, int *buflen)
{
	u32 loff;
	int dlen;
	bfa_status_t status;
	u32 smem_len = BFA_IOC_FW_SMEM_SIZE(ioc);

	if (*offset >= smem_len) {
		*offset = *buflen = 0;
		return BFA_STATUS_EINVAL;
2623
	}
2624

K
Krishna Gudipati 已提交
2625 2626 2627
	loff = *offset;
	dlen = *buflen;

J
Jing Huang 已提交
2628
	/*
K
Krishna Gudipati 已提交
2629 2630
	 * First smem read, sync smem before proceeding
	 * No need to sync before reading every chunk.
2631
	 */
K
Krishna Gudipati 已提交
2632 2633
	if (loff == 0)
		bfa_ioc_fwsync(ioc);
2634

K
Krishna Gudipati 已提交
2635 2636
	if ((loff + dlen) >= smem_len)
		dlen = smem_len - loff;
2637

K
Krishna Gudipati 已提交
2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654
	status = bfa_ioc_smem_read(ioc, buf, loff, dlen);

	if (status != BFA_STATUS_OK) {
		*offset = *buflen = 0;
		return status;
	}

	*offset += dlen;

	if (*offset >= smem_len)
		*offset = 0;

	*buflen = dlen;

	return status;
}

J
Jing Huang 已提交
2655
/*
K
Krishna Gudipati 已提交
2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697
 * Firmware statistics
 */
bfa_status_t
bfa_ioc_fw_stats_get(struct bfa_ioc_s *ioc, void *stats)
{
	u32 loff = BFI_IOC_FWSTATS_OFF + \
		BFI_IOC_FWSTATS_SZ * (bfa_ioc_portid(ioc));
	int tlen;
	bfa_status_t status;

	if (ioc->stats_busy) {
		bfa_trc(ioc, ioc->stats_busy);
		return BFA_STATUS_DEVBUSY;
	}
	ioc->stats_busy = BFA_TRUE;

	tlen = sizeof(struct bfa_fw_stats_s);
	status = bfa_ioc_smem_read(ioc, stats, loff, tlen);

	ioc->stats_busy = BFA_FALSE;
	return status;
}

bfa_status_t
bfa_ioc_fw_stats_clear(struct bfa_ioc_s *ioc)
{
	u32 loff = BFI_IOC_FWSTATS_OFF + \
		BFI_IOC_FWSTATS_SZ * (bfa_ioc_portid(ioc));
	int tlen;
	bfa_status_t status;

	if (ioc->stats_busy) {
		bfa_trc(ioc, ioc->stats_busy);
		return BFA_STATUS_DEVBUSY;
	}
	ioc->stats_busy = BFA_TRUE;

	tlen = sizeof(struct bfa_fw_stats_s);
	status = bfa_ioc_smem_clr(ioc, loff, tlen);

	ioc->stats_busy = BFA_FALSE;
	return status;
2698 2699
}

J
Jing Huang 已提交
2700
/*
2701 2702 2703 2704 2705
 * Save firmware trace if configured.
 */
static void
bfa_ioc_debug_save(struct bfa_ioc_s *ioc)
{
K
Krishna Gudipati 已提交
2706
	int		tlen;
2707 2708 2709 2710 2711 2712 2713

	if (ioc->dbg_fwsave_len) {
		tlen = ioc->dbg_fwsave_len;
		bfa_ioc_debug_fwtrc(ioc, ioc->dbg_fwsave, &tlen);
	}
}

J
Jing Huang 已提交
2714
/*
2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729
 * Firmware failure detected. Start recovery actions.
 */
static void
bfa_ioc_recover(struct bfa_ioc_s *ioc)
{
	if (ioc->dbg_fwsave_once) {
		ioc->dbg_fwsave_once = BFA_FALSE;
		bfa_ioc_debug_save(ioc);
	}

	bfa_ioc_stats(ioc, ioc_hbfails);
	bfa_fsm_send_event(ioc, IOC_E_HBFAIL);
}

static void
J
Jing Huang 已提交
2730
bfa_ioc_check_attr_wwns(struct bfa_ioc_s *ioc)
2731
{
J
Jing Huang 已提交
2732 2733
	if (bfa_ioc_get_type(ioc) == BFA_IOC_TYPE_LL)
		return;
K
Krishna Gudipati 已提交
2734 2735
}

J
Jing Huang 已提交
2736
/*
K
Krishna Gudipati 已提交
2737 2738
 *  hal_iocpf_pvt BFA IOC PF private functions
 */
J
Jing Huang 已提交
2739

K
Krishna Gudipati 已提交
2740 2741 2742 2743
static void
bfa_iocpf_enable(struct bfa_ioc_s *ioc)
{
	bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_ENABLE);
2744 2745
}

K
Krishna Gudipati 已提交
2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792
static void
bfa_iocpf_disable(struct bfa_ioc_s *ioc)
{
	bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_DISABLE);
}

static void
bfa_iocpf_fail(struct bfa_ioc_s *ioc)
{
	bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_FAIL);
}

static void
bfa_iocpf_initfail(struct bfa_ioc_s *ioc)
{
	bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_INITFAIL);
}

static void
bfa_iocpf_getattrfail(struct bfa_ioc_s *ioc)
{
	bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_GETATTRFAIL);
}

static void
bfa_iocpf_stop(struct bfa_ioc_s *ioc)
{
	bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_STOP);
}

static void
bfa_iocpf_timeout(void *ioc_arg)
{
	struct bfa_ioc_s  *ioc = (struct bfa_ioc_s *) ioc_arg;

	bfa_trc(ioc, 0);
	bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_TIMEOUT);
}

static void
bfa_iocpf_sem_timeout(void *ioc_arg)
{
	struct bfa_ioc_s  *ioc = (struct bfa_ioc_s *) ioc_arg;

	bfa_ioc_hw_sem_get(ioc);
}

J
Jing Huang 已提交
2793
/*
K
Krishna Gudipati 已提交
2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837
 *  bfa timer function
 */
void
bfa_timer_init(struct bfa_timer_mod_s *mod)
{
	INIT_LIST_HEAD(&mod->timer_q);
}

void
bfa_timer_beat(struct bfa_timer_mod_s *mod)
{
	struct list_head *qh = &mod->timer_q;
	struct list_head *qe, *qe_next;
	struct bfa_timer_s *elem;
	struct list_head timedout_q;

	INIT_LIST_HEAD(&timedout_q);

	qe = bfa_q_next(qh);

	while (qe != qh) {
		qe_next = bfa_q_next(qe);

		elem = (struct bfa_timer_s *) qe;
		if (elem->timeout <= BFA_TIMER_FREQ) {
			elem->timeout = 0;
			list_del(&elem->qe);
			list_add_tail(&elem->qe, &timedout_q);
		} else {
			elem->timeout -= BFA_TIMER_FREQ;
		}

		qe = qe_next;	/* go to next elem */
	}

	/*
	 * Pop all the timeout entries
	 */
	while (!list_empty(&timedout_q)) {
		bfa_q_deq(&timedout_q, &elem);
		elem->timercb(elem->arg);
	}
}

J
Jing Huang 已提交
2838
/*
K
Krishna Gudipati 已提交
2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855
 * Should be called with lock protection
 */
void
bfa_timer_begin(struct bfa_timer_mod_s *mod, struct bfa_timer_s *timer,
		    void (*timercb) (void *), void *arg, unsigned int timeout)
{

	bfa_assert(timercb != NULL);
	bfa_assert(!bfa_q_is_on_q(&mod->timer_q, timer));

	timer->timeout = timeout;
	timer->timercb = timercb;
	timer->arg = arg;

	list_add_tail(&timer->qe, &mod->timer_q);
}

J
Jing Huang 已提交
2856
/*
K
Krishna Gudipati 已提交
2857 2858 2859 2860 2861 2862 2863 2864 2865
 * Should be called with lock protection
 */
void
bfa_timer_stop(struct bfa_timer_s *timer)
{
	bfa_assert(!list_empty(&timer->qe));

	list_del(&timer->qe);
}