bfa_ioc.c 74.9 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.
 */

M
Maggie Zhang 已提交
18
#include "bfad_drv.h"
K
Krishna Gudipati 已提交
19
#include "bfa_ioc.h"
20
#include "bfi_reg.h"
K
Krishna Gudipati 已提交
21 22
#include "bfa_defs.h"
#include "bfa_defs_svc.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
#define BFA_IOC_TOV		3000	/* msecs */
#define BFA_IOC_HWSEM_TOV	500	/* msecs */
#define BFA_IOC_HB_TOV		500	/* msecs */
#define BFA_IOC_TOV_RECOVER	 BFA_IOC_HB_TOV
33
#define BFA_IOC_POLL_TOV	BFA_TIMER_FREQ
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
#define BFA_DBG_FWTRC_OFF(_fn)	(BFI_IOC_TRC_OFF + BFA_DBG_FWTRC_LEN * (_fn))

J
Jing Huang 已提交
47
/*
48 49 50
 * Asic specific macros : see bfa_hw_cb.c and bfa_hw_ct.c for details.
 */

K
Krishna Gudipati 已提交
51
#define bfa_ioc_firmware_lock(__ioc)			\
52
			((__ioc)->ioc_hwif->ioc_firmware_lock(__ioc))
K
Krishna Gudipati 已提交
53
#define bfa_ioc_firmware_unlock(__ioc)			\
54 55 56
			((__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))
57 58
#define bfa_ioc_notify_fail(__ioc)              \
			((__ioc)->ioc_hwif->ioc_notify_fail(__ioc))
J
Jing Huang 已提交
59 60
#define bfa_ioc_sync_start(__ioc)               \
			((__ioc)->ioc_hwif->ioc_sync_start(__ioc))
61 62 63 64 65 66 67 68
#define bfa_ioc_sync_join(__ioc)                \
			((__ioc)->ioc_hwif->ioc_sync_join(__ioc))
#define bfa_ioc_sync_leave(__ioc)               \
			((__ioc)->ioc_hwif->ioc_sync_leave(__ioc))
#define bfa_ioc_sync_ack(__ioc)                 \
			((__ioc)->ioc_hwif->ioc_sync_ack(__ioc))
#define bfa_ioc_sync_complete(__ioc)            \
			((__ioc)->ioc_hwif->ioc_sync_complete(__ioc))
K
Krishna Gudipati 已提交
69 70 71

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

bfa_boolean_t bfa_auto_recover = BFA_TRUE;
75 76 77 78

/*
 * forward declarations
 */
K
Krishna Gudipati 已提交
79 80 81
static void bfa_ioc_hw_sem_get(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);
82
static void bfa_ioc_poll_fwinit(struct bfa_ioc_s *ioc);
K
Krishna Gudipati 已提交
83 84 85 86 87
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_mbox_poll(struct bfa_ioc_s *ioc);
88
static void bfa_ioc_mbox_flush(struct bfa_ioc_s *ioc);
K
Krishna Gudipati 已提交
89 90
static void bfa_ioc_recover(struct bfa_ioc_s *ioc);
static void bfa_ioc_check_attr_wwns(struct bfa_ioc_s *ioc);
91 92
static void bfa_ioc_event_notify(struct bfa_ioc_s *ioc ,
				enum bfa_ioc_event_e event);
K
Krishna Gudipati 已提交
93 94
static void bfa_ioc_disable_comp(struct bfa_ioc_s *ioc);
static void bfa_ioc_lpu_stop(struct bfa_ioc_s *ioc);
95 96
static void bfa_ioc_debug_save_ftrc(struct bfa_ioc_s *ioc);
static void bfa_ioc_fail_notify(struct bfa_ioc_s *ioc);
K
Krishna Gudipati 已提交
97
static void bfa_ioc_pf_fwmismatch(struct bfa_ioc_s *ioc);
98 99


J
Jing Huang 已提交
100
/*
K
Krishna Gudipati 已提交
101
 * IOC state machine definitions/declarations
102 103
 */
enum ioc_event {
K
Krishna Gudipati 已提交
104 105 106 107 108 109 110
	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		*/
111 112 113 114
	IOC_E_PFFAILED		= 8,	/*  failure notice by iocpf sm	*/
	IOC_E_HBFAIL		= 9,	/*  heartbeat failure		*/
	IOC_E_HWERROR		= 10,	/*  hardware error interrupt	*/
	IOC_E_TIMEOUT		= 11,	/*  timeout			*/
K
Krishna Gudipati 已提交
115
	IOC_E_HWFAILED		= 12,	/*  PCI mapping failure notice	*/
116
	IOC_E_FWRSP_ACQ_ADDR	= 13,	/*  Acquiring address		*/
117 118
};

K
Krishna Gudipati 已提交
119
bfa_fsm_state_decl(bfa_ioc, uninit, struct bfa_ioc_s, enum ioc_event);
120 121 122 123
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);
124
bfa_fsm_state_decl(bfa_ioc, fail_retry, struct bfa_ioc_s, enum ioc_event);
K
Krishna Gudipati 已提交
125
bfa_fsm_state_decl(bfa_ioc, fail, struct bfa_ioc_s, enum ioc_event);
126 127
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);
K
Krishna Gudipati 已提交
128
bfa_fsm_state_decl(bfa_ioc, hwfail, struct bfa_ioc_s, enum ioc_event);
129
bfa_fsm_state_decl(bfa_ioc, acq_addr, struct bfa_ioc_s, enum ioc_event);
130 131

static struct bfa_sm_table_s ioc_sm_table[] = {
K
Krishna Gudipati 已提交
132
	{BFA_SM(bfa_ioc_sm_uninit), BFA_IOC_UNINIT},
133
	{BFA_SM(bfa_ioc_sm_reset), BFA_IOC_RESET},
K
Krishna Gudipati 已提交
134
	{BFA_SM(bfa_ioc_sm_enabling), BFA_IOC_ENABLING},
135 136
	{BFA_SM(bfa_ioc_sm_getattr), BFA_IOC_GETATTR},
	{BFA_SM(bfa_ioc_sm_op), BFA_IOC_OPERATIONAL},
137
	{BFA_SM(bfa_ioc_sm_fail_retry), BFA_IOC_INITFAIL},
K
Krishna Gudipati 已提交
138
	{BFA_SM(bfa_ioc_sm_fail), BFA_IOC_FAIL},
139 140
	{BFA_SM(bfa_ioc_sm_disabling), BFA_IOC_DISABLING},
	{BFA_SM(bfa_ioc_sm_disabled), BFA_IOC_DISABLED},
K
Krishna Gudipati 已提交
141
	{BFA_SM(bfa_ioc_sm_hwfail), BFA_IOC_HWFAIL},
142
	{BFA_SM(bfa_ioc_sm_acq_addr), BFA_IOC_ACQ_ADDR},
143 144
};

J
Jing Huang 已提交
145
/*
K
Krishna Gudipati 已提交
146 147 148 149 150 151 152 153
 * 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)

154
#define bfa_iocpf_poll_timer_start(__ioc)				\
K
Krishna Gudipati 已提交
155
	bfa_timer_begin((__ioc)->timer_mod, &(__ioc)->ioc_timer,	\
156
			bfa_iocpf_poll_timeout, (__ioc), BFA_IOC_POLL_TOV)
K
Krishna Gudipati 已提交
157 158 159 160 161 162 163 164 165 166 167

#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_timeout(void *ioc_arg);
static void bfa_iocpf_sem_timeout(void *ioc_arg);
168
static void bfa_iocpf_poll_timeout(void *ioc_arg);
K
Krishna Gudipati 已提交
169

J
Jing Huang 已提交
170
/*
K
Krishna Gudipati 已提交
171 172 173 174 175 176 177 178 179 180 181 182 183 184
 * 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	*/
K
Krishna Gudipati 已提交
185
	IOCPF_E_SEM_ERROR	= 12,	/*  h/w sem mapping error	*/
K
Krishna Gudipati 已提交
186 187
};

J
Jing Huang 已提交
188
/*
K
Krishna Gudipati 已提交
189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
 * 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);
210 211
bfa_fsm_state_decl(bfa_iocpf, initfail_sync, struct bfa_iocpf_s,
						enum iocpf_event);
K
Krishna Gudipati 已提交
212
bfa_fsm_state_decl(bfa_iocpf, initfail, struct bfa_iocpf_s, enum iocpf_event);
213
bfa_fsm_state_decl(bfa_iocpf, fail_sync, struct bfa_iocpf_s, enum iocpf_event);
K
Krishna Gudipati 已提交
214 215
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);
216 217
bfa_fsm_state_decl(bfa_iocpf, disabling_sync, struct bfa_iocpf_s,
						enum iocpf_event);
K
Krishna Gudipati 已提交
218 219 220 221 222 223 224 225 226 227
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},
228
	{BFA_SM(bfa_iocpf_sm_initfail_sync), BFA_IOCPF_INITFAIL},
K
Krishna Gudipati 已提交
229
	{BFA_SM(bfa_iocpf_sm_initfail), BFA_IOCPF_INITFAIL},
230
	{BFA_SM(bfa_iocpf_sm_fail_sync), BFA_IOCPF_FAIL},
K
Krishna Gudipati 已提交
231 232
	{BFA_SM(bfa_iocpf_sm_fail), BFA_IOCPF_FAIL},
	{BFA_SM(bfa_iocpf_sm_disabling), BFA_IOCPF_DISABLING},
233
	{BFA_SM(bfa_iocpf_sm_disabling_sync), BFA_IOCPF_DISABLING},
K
Krishna Gudipati 已提交
234 235 236
	{BFA_SM(bfa_iocpf_sm_disabled), BFA_IOCPF_DISABLED},
};

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

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

static void
bfa_ioc_sm_uninit_entry(struct bfa_ioc_s *ioc)
{
}

J
Jing Huang 已提交
250
/*
K
Krishna Gudipati 已提交
251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266
 * 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 已提交
267
/*
268 269 270 271 272
 * Reset entry actions -- initialize state machine
 */
static void
bfa_ioc_sm_reset_entry(struct bfa_ioc_s *ioc)
{
K
Krishna Gudipati 已提交
273
	bfa_fsm_set_state(&ioc->iocpf, bfa_iocpf_sm_reset);
274 275
}

J
Jing Huang 已提交
276
/*
K
Krishna Gudipati 已提交
277
 * IOC is in reset state.
278 279 280 281 282 283 284 285
 */
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 已提交
286
		bfa_fsm_set_state(ioc, bfa_ioc_sm_enabling);
287 288 289 290 291 292 293
		break;

	case IOC_E_DISABLE:
		bfa_ioc_disable_comp(ioc);
		break;

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

	default:
		bfa_sm_fault(ioc, event);
	}
}

K
Krishna Gudipati 已提交
302 303 304 305

static void
bfa_ioc_sm_enabling_entry(struct bfa_ioc_s *ioc)
{
306
	bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_ENABLE);
K
Krishna Gudipati 已提交
307 308
}

J
Jing Huang 已提交
309
/*
K
Krishna Gudipati 已提交
310 311
 * Host IOC function is being enabled, awaiting response from firmware.
 * Semaphore is acquired.
312 313
 */
static void
K
Krishna Gudipati 已提交
314
bfa_ioc_sm_enabling(struct bfa_ioc_s *ioc, enum ioc_event event)
315
{
K
Krishna Gudipati 已提交
316 317 318 319 320 321 322
	bfa_trc(ioc, event);

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

323 324
	case IOC_E_PFFAILED:
		/* !!! fall through !!! */
K
Krishna Gudipati 已提交
325
	case IOC_E_HWERROR:
326
		ioc->cbfn->enable_cbfn(ioc->bfa, BFA_STATUS_IOC_FAILURE);
327
		bfa_fsm_set_state(ioc, bfa_ioc_sm_fail);
328 329
		if (event != IOC_E_PFFAILED)
			bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_INITFAIL);
K
Krishna Gudipati 已提交
330 331
		break;

K
Krishna Gudipati 已提交
332 333 334 335 336
	case IOC_E_HWFAILED:
		ioc->cbfn->enable_cbfn(ioc->bfa, BFA_STATUS_IOC_FAILURE);
		bfa_fsm_set_state(ioc, bfa_ioc_sm_hwfail);
		break;

K
Krishna Gudipati 已提交
337 338 339 340 341 342
	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);
343
		bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_STOP);
K
Krishna Gudipati 已提交
344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359
		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);
360 361
}

J
Jing Huang 已提交
362
/*
K
Krishna Gudipati 已提交
363
 * IOC configuration in progress. Timer is active.
364 365
 */
static void
K
Krishna Gudipati 已提交
366
bfa_ioc_sm_getattr(struct bfa_ioc_s *ioc, enum ioc_event event)
367 368 369 370
{
	bfa_trc(ioc, event);

	switch (event) {
K
Krishna Gudipati 已提交
371 372 373
	case IOC_E_FWRSP_GETATTR:
		bfa_ioc_timer_stop(ioc);
		bfa_ioc_check_attr_wwns(ioc);
374
		bfa_ioc_hb_monitor(ioc);
K
Krishna Gudipati 已提交
375 376 377
		bfa_fsm_set_state(ioc, bfa_ioc_sm_op);
		break;

378 379 380 381
	case IOC_E_FWRSP_ACQ_ADDR:
		bfa_ioc_timer_stop(ioc);
		bfa_ioc_hb_monitor(ioc);
		bfa_fsm_set_state(ioc, bfa_ioc_sm_acq_addr);
K
Krishna Gudipati 已提交
382
		break;
383

384
	case IOC_E_PFFAILED:
K
Krishna Gudipati 已提交
385 386
	case IOC_E_HWERROR:
		bfa_ioc_timer_stop(ioc);
387
		/* !!! fall through !!! */
K
Krishna Gudipati 已提交
388
	case IOC_E_TIMEOUT:
389
		ioc->cbfn->enable_cbfn(ioc->bfa, BFA_STATUS_IOC_FAILURE);
390
		bfa_fsm_set_state(ioc, bfa_ioc_sm_fail);
391 392
		if (event != IOC_E_PFFAILED)
			bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_GETATTRFAIL);
393 394 395
		break;

	case IOC_E_DISABLE:
K
Krishna Gudipati 已提交
396 397 398 399 400 401 402 403 404 405 406 407
		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);
	}
}

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 447 448 449 450 451
/*
 * Acquiring address from fabric (entry function)
 */
static void
bfa_ioc_sm_acq_addr_entry(struct bfa_ioc_s *ioc)
{
}

/*
 *	Acquiring address from the fabric
 */
static void
bfa_ioc_sm_acq_addr(struct bfa_ioc_s *ioc, enum ioc_event event)
{
	bfa_trc(ioc, event);

	switch (event) {
	case IOC_E_FWRSP_GETATTR:
		bfa_ioc_check_attr_wwns(ioc);
		bfa_fsm_set_state(ioc, bfa_ioc_sm_op);
		break;

	case IOC_E_PFFAILED:
	case IOC_E_HWERROR:
		bfa_hb_timer_stop(ioc);
	case IOC_E_HBFAIL:
		ioc->cbfn->enable_cbfn(ioc->bfa, BFA_STATUS_IOC_FAILURE);
		bfa_fsm_set_state(ioc, bfa_ioc_sm_fail);
		if (event != IOC_E_PFFAILED)
			bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_GETATTRFAIL);
		break;

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

	case IOC_E_ENABLE:
		break;

	default:
		bfa_sm_fault(ioc, event);
	}
}
K
Krishna Gudipati 已提交
452 453 454 455 456 457 458

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);
459
	bfa_ioc_event_notify(ioc, BFA_IOC_E_ENABLED);
460
	BFA_LOG(KERN_INFO, bfad, bfa_log_level, "IOC enabled\n");
K
Krishna Gudipati 已提交
461 462 463 464 465 466 467 468 469 470 471 472
}

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:
473
		bfa_hb_timer_stop(ioc);
K
Krishna Gudipati 已提交
474 475 476
		bfa_fsm_set_state(ioc, bfa_ioc_sm_disabling);
		break;

477
	case IOC_E_PFFAILED:
K
Krishna Gudipati 已提交
478
	case IOC_E_HWERROR:
479
		bfa_hb_timer_stop(ioc);
K
Krishna Gudipati 已提交
480 481
		/* !!! fall through !!! */
	case IOC_E_HBFAIL:
482 483 484 485 486
		if (ioc->iocpf.auto_recover)
			bfa_fsm_set_state(ioc, bfa_ioc_sm_fail_retry);
		else
			bfa_fsm_set_state(ioc, bfa_ioc_sm_fail);

487 488
		bfa_ioc_fail_notify(ioc);

489 490
		if (event != IOC_E_PFFAILED)
			bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_FAIL);
K
Krishna Gudipati 已提交
491 492 493 494 495 496 497 498 499 500 501 502
		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;
503
	bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_DISABLE);
504
	BFA_LOG(KERN_INFO, bfad, bfa_log_level, "IOC disabled\n");
K
Krishna Gudipati 已提交
505 506
}

J
Jing Huang 已提交
507
/*
K
Krishna Gudipati 已提交
508 509 510 511 512 513 514 515 516 517 518 519 520
 * 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:
521
		/*
K
Krishna Gudipati 已提交
522 523 524
		 * No state change.  Will move to disabled state
		 * after iocpf sm completes failure processing and
		 * moves to disabled state.
525
		 */
526
		bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_FAIL);
K
Krishna Gudipati 已提交
527
		break;
528

K
Krishna Gudipati 已提交
529 530 531 532 533
	case IOC_E_HWFAILED:
		bfa_fsm_set_state(ioc, bfa_ioc_sm_hwfail);
		bfa_ioc_disable_comp(ioc);
		break;

K
Krishna Gudipati 已提交
534 535 536 537 538
	default:
		bfa_sm_fault(ioc, event);
	}
}

J
Jing Huang 已提交
539
/*
K
Krishna Gudipati 已提交
540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555
 * 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);
556 557
		break;

K
Krishna Gudipati 已提交
558 559 560 561 562 563
	case IOC_E_DISABLE:
		ioc->cbfn->disable_cbfn(ioc->bfa);
		break;

	case IOC_E_DETACH:
		bfa_fsm_set_state(ioc, bfa_ioc_sm_uninit);
564
		bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_STOP);
565 566 567 568 569 570 571
		break;

	default:
		bfa_sm_fault(ioc, event);
	}
}

K
Krishna Gudipati 已提交
572 573

static void
574
bfa_ioc_sm_fail_retry_entry(struct bfa_ioc_s *ioc)
K
Krishna Gudipati 已提交
575
{
576
	bfa_trc(ioc, 0);
K
Krishna Gudipati 已提交
577 578
}

J
Jing Huang 已提交
579
/*
580
 * Hardware initialization retry.
581 582
 */
static void
583
bfa_ioc_sm_fail_retry(struct bfa_ioc_s *ioc, enum ioc_event event)
584
{
K
Krishna Gudipati 已提交
585 586 587 588 589 590 591
	bfa_trc(ioc, event);

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

592 593
	case IOC_E_PFFAILED:
	case IOC_E_HWERROR:
J
Jing Huang 已提交
594
		/*
595
		 * Initialization retry failed.
K
Krishna Gudipati 已提交
596 597
		 */
		ioc->cbfn->enable_cbfn(ioc->bfa, BFA_STATUS_IOC_FAILURE);
598
		bfa_fsm_set_state(ioc, bfa_ioc_sm_fail);
599 600 601 602
		if (event != IOC_E_PFFAILED)
			bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_INITFAIL);
		break;

K
Krishna Gudipati 已提交
603 604 605 606 607
	case IOC_E_HWFAILED:
		ioc->cbfn->enable_cbfn(ioc->bfa, BFA_STATUS_IOC_FAILURE);
		bfa_fsm_set_state(ioc, bfa_ioc_sm_hwfail);
		break;

608
	case IOC_E_ENABLE:
K
Krishna Gudipati 已提交
609 610 611 612 613 614 615 616
		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);
617
		bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_STOP);
K
Krishna Gudipati 已提交
618 619 620 621 622 623 624 625 626 627 628
		break;

	default:
		bfa_sm_fault(ioc, event);
	}
}


static void
bfa_ioc_sm_fail_entry(struct bfa_ioc_s *ioc)
{
629
	bfa_trc(ioc, 0);
630 631
}

J
Jing Huang 已提交
632
/*
K
Krishna Gudipati 已提交
633
 * IOC failure.
634 635
 */
static void
K
Krishna Gudipati 已提交
636
bfa_ioc_sm_fail(struct bfa_ioc_s *ioc, enum ioc_event event)
637 638 639 640
{
	bfa_trc(ioc, event);

	switch (event) {
K
Krishna Gudipati 已提交
641 642 643 644 645

	case IOC_E_ENABLE:
		ioc->cbfn->enable_cbfn(ioc->bfa, BFA_STATUS_IOC_FAILURE);
		break;

646
	case IOC_E_DISABLE:
K
Krishna Gudipati 已提交
647 648 649
		bfa_fsm_set_state(ioc, bfa_ioc_sm_disabling);
		break;

650 651 652 653 654
	case IOC_E_DETACH:
		bfa_fsm_set_state(ioc, bfa_ioc_sm_uninit);
		bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_STOP);
		break;

K
Krishna Gudipati 已提交
655
	case IOC_E_HWERROR:
656
		/*
K
Krishna Gudipati 已提交
657
		 * HB failure notification, ignore.
658
		 */
K
Krishna Gudipati 已提交
659 660 661 662 663
		break;
	default:
		bfa_sm_fault(ioc, event);
	}
}
664

K
Krishna Gudipati 已提交
665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693
static void
bfa_ioc_sm_hwfail_entry(struct bfa_ioc_s *ioc)
{
	bfa_trc(ioc, 0);
}

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

	switch (event) {
	case IOC_E_ENABLE:
		ioc->cbfn->enable_cbfn(ioc->bfa, BFA_STATUS_IOC_FAILURE);
		break;

	case IOC_E_DISABLE:
		ioc->cbfn->disable_cbfn(ioc->bfa);
		break;

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

	default:
		bfa_sm_fault(ioc, event);
	}
}

J
Jing Huang 已提交
694
/*
K
Krishna Gudipati 已提交
695 696 697
 * IOCPF State Machine
 */

J
Jing Huang 已提交
698
/*
K
Krishna Gudipati 已提交
699 700 701 702 703
 * Reset entry actions -- initialize state machine
 */
static void
bfa_iocpf_sm_reset_entry(struct bfa_iocpf_s *iocpf)
{
704
	iocpf->fw_mismatch_notified = BFA_FALSE;
K
Krishna Gudipati 已提交
705 706 707
	iocpf->auto_recover = bfa_auto_recover;
}

J
Jing Huang 已提交
708
/*
K
Krishna Gudipati 已提交
709 710 711 712 713 714 715 716 717 718 719 720
 * 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);
721 722
		break;

K
Krishna Gudipati 已提交
723
	case IOCPF_E_STOP:
724 725 726 727 728 729 730
		break;

	default:
		bfa_sm_fault(ioc, event);
	}
}

J
Jing Huang 已提交
731
/*
K
Krishna Gudipati 已提交
732
 * Semaphore should be acquired for version check.
733 734
 */
static void
K
Krishna Gudipati 已提交
735
bfa_iocpf_sm_fwcheck_entry(struct bfa_iocpf_s *iocpf)
736
{
K
Krishna Gudipati 已提交
737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758
	struct bfi_ioc_image_hdr_s	fwhdr;
	u32	fwstate = readl(iocpf->ioc->ioc_regs.ioc_fwstate);

	/* h/w sem init */
	if (fwstate == BFI_IOC_UNINIT)
		goto sem_get;

	bfa_ioc_fwver_get(iocpf->ioc, &fwhdr);

	if (swab32(fwhdr.exec) == BFI_FWBOOT_TYPE_NORMAL)
		goto sem_get;

	bfa_trc(iocpf->ioc, fwstate);
	bfa_trc(iocpf->ioc, fwhdr.exec);
	writel(BFI_IOC_UNINIT, iocpf->ioc->ioc_regs.ioc_fwstate);

	/*
	 * Try to lock and then unlock the semaphore.
	 */
	readl(iocpf->ioc->ioc_regs.ioc_sem_reg);
	writel(1, iocpf->ioc->ioc_regs.ioc_sem_reg);
sem_get:
K
Krishna Gudipati 已提交
759
	bfa_ioc_hw_sem_get(iocpf->ioc);
760 761
}

J
Jing Huang 已提交
762
/*
K
Krishna Gudipati 已提交
763
 * Awaiting h/w semaphore to continue with version check.
764 765
 */
static void
K
Krishna Gudipati 已提交
766
bfa_iocpf_sm_fwcheck(struct bfa_iocpf_s *iocpf, enum iocpf_event event)
767
{
K
Krishna Gudipati 已提交
768 769
	struct bfa_ioc_s *ioc = iocpf->ioc;

770 771 772
	bfa_trc(ioc, event);

	switch (event) {
K
Krishna Gudipati 已提交
773 774
	case IOCPF_E_SEMLOCKED:
		if (bfa_ioc_firmware_lock(ioc)) {
J
Jing Huang 已提交
775
			if (bfa_ioc_sync_start(ioc)) {
776 777 778 779 780 781 782
				bfa_ioc_sync_join(ioc);
				bfa_fsm_set_state(iocpf, bfa_iocpf_sm_hwinit);
			} else {
				bfa_ioc_firmware_unlock(ioc);
				writel(1, ioc->ioc_regs.ioc_sem_reg);
				bfa_sem_timer_start(ioc);
			}
K
Krishna Gudipati 已提交
783
		} else {
784
			writel(1, ioc->ioc_regs.ioc_sem_reg);
K
Krishna Gudipati 已提交
785 786
			bfa_fsm_set_state(iocpf, bfa_iocpf_sm_mismatch);
		}
787 788
		break;

K
Krishna Gudipati 已提交
789 790 791 792 793
	case IOCPF_E_SEM_ERROR:
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_fail);
		bfa_fsm_send_event(ioc, IOC_E_HWFAILED);
		break;

K
Krishna Gudipati 已提交
794
	case IOCPF_E_DISABLE:
795
		bfa_sem_timer_stop(ioc);
K
Krishna Gudipati 已提交
796
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_reset);
797
		bfa_fsm_send_event(ioc, IOC_E_DISABLED);
K
Krishna Gudipati 已提交
798 799 800
		break;

	case IOCPF_E_STOP:
801
		bfa_sem_timer_stop(ioc);
K
Krishna Gudipati 已提交
802
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_reset);
803 804 805 806 807 808 809
		break;

	default:
		bfa_sm_fault(ioc, event);
	}
}

J
Jing Huang 已提交
810
/*
K
Krishna Gudipati 已提交
811 812
 * Notify enable completion callback.
 */
813
static void
K
Krishna Gudipati 已提交
814
bfa_iocpf_sm_mismatch_entry(struct bfa_iocpf_s *iocpf)
815
{
K
Krishna Gudipati 已提交
816 817 818
	/*
	 * Call only the first time sm enters fwmismatch state.
	 */
819
	if (iocpf->fw_mismatch_notified == BFA_FALSE)
K
Krishna Gudipati 已提交
820 821
		bfa_ioc_pf_fwmismatch(iocpf->ioc);

822
	iocpf->fw_mismatch_notified = BFA_TRUE;
K
Krishna Gudipati 已提交
823
	bfa_iocpf_timer_start(iocpf->ioc);
824 825
}

J
Jing Huang 已提交
826
/*
K
Krishna Gudipati 已提交
827
 * Awaiting firmware version match.
828 829
 */
static void
K
Krishna Gudipati 已提交
830
bfa_iocpf_sm_mismatch(struct bfa_iocpf_s *iocpf, enum iocpf_event event)
831
{
K
Krishna Gudipati 已提交
832 833
	struct bfa_ioc_s *ioc = iocpf->ioc;

834 835 836
	bfa_trc(ioc, event);

	switch (event) {
K
Krishna Gudipati 已提交
837 838
	case IOCPF_E_TIMEOUT:
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_fwcheck);
839 840
		break;

K
Krishna Gudipati 已提交
841 842 843
	case IOCPF_E_DISABLE:
		bfa_iocpf_timer_stop(ioc);
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_reset);
844
		bfa_fsm_send_event(ioc, IOC_E_DISABLED);
K
Krishna Gudipati 已提交
845
		break;
846

K
Krishna Gudipati 已提交
847 848 849 850
	case IOCPF_E_STOP:
		bfa_iocpf_timer_stop(ioc);
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_reset);
		break;
851

K
Krishna Gudipati 已提交
852 853 854 855 856
	default:
		bfa_sm_fault(ioc, event);
	}
}

J
Jing Huang 已提交
857
/*
K
Krishna Gudipati 已提交
858 859 860 861 862 863 864 865
 * 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 已提交
866
/*
K
Krishna Gudipati 已提交
867 868 869 870 871 872 873 874 875 876 877
 * 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:
878 879 880 881 882 883 884
		if (bfa_ioc_sync_complete(ioc)) {
			bfa_ioc_sync_join(ioc);
			bfa_fsm_set_state(iocpf, bfa_iocpf_sm_hwinit);
		} else {
			writel(1, ioc->ioc_regs.ioc_sem_reg);
			bfa_sem_timer_start(ioc);
		}
885 886
		break;

K
Krishna Gudipati 已提交
887 888 889 890 891
	case IOCPF_E_SEM_ERROR:
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_fail);
		bfa_fsm_send_event(ioc, IOC_E_HWFAILED);
		break;

K
Krishna Gudipati 已提交
892
	case IOCPF_E_DISABLE:
893
		bfa_sem_timer_stop(ioc);
894
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabling_sync);
895 896 897 898 899 900 901 902
		break;

	default:
		bfa_sm_fault(ioc, event);
	}
}

static void
K
Krishna Gudipati 已提交
903
bfa_iocpf_sm_hwinit_entry(struct bfa_iocpf_s *iocpf)
904
{
905
	iocpf->poll_time = 0;
906
	bfa_ioc_hwinit(iocpf->ioc, BFA_FALSE);
907 908
}

J
Jing Huang 已提交
909
/*
K
Krishna Gudipati 已提交
910 911
 * Hardware is being initialized. Interrupts are enabled.
 * Holding hardware semaphore lock.
912 913
 */
static void
K
Krishna Gudipati 已提交
914
bfa_iocpf_sm_hwinit(struct bfa_iocpf_s *iocpf, enum iocpf_event event)
915
{
K
Krishna Gudipati 已提交
916 917
	struct bfa_ioc_s *ioc = iocpf->ioc;

918 919 920
	bfa_trc(ioc, event);

	switch (event) {
K
Krishna Gudipati 已提交
921 922
	case IOCPF_E_FWREADY:
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_enabling);
923 924
		break;

K
Krishna Gudipati 已提交
925
	case IOCPF_E_TIMEOUT:
926
		writel(1, ioc->ioc_regs.ioc_sem_reg);
927
		bfa_fsm_send_event(ioc, IOC_E_PFFAILED);
928
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_initfail_sync);
929 930
		break;

K
Krishna Gudipati 已提交
931 932
	case IOCPF_E_DISABLE:
		bfa_iocpf_timer_stop(ioc);
933 934
		bfa_ioc_sync_leave(ioc);
		writel(1, ioc->ioc_regs.ioc_sem_reg);
K
Krishna Gudipati 已提交
935
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabled);
936 937 938 939 940 941 942 943
		break;

	default:
		bfa_sm_fault(ioc, event);
	}
}

static void
K
Krishna Gudipati 已提交
944
bfa_iocpf_sm_enabling_entry(struct bfa_iocpf_s *iocpf)
945
{
K
Krishna Gudipati 已提交
946
	bfa_iocpf_timer_start(iocpf->ioc);
947 948 949 950
	/*
	 * Enable Interrupts before sending fw IOC ENABLE cmd.
	 */
	iocpf->ioc->cbfn->reset_cbfn(iocpf->ioc->bfa);
K
Krishna Gudipati 已提交
951
	bfa_ioc_send_enable(iocpf->ioc);
952 953
}

J
Jing Huang 已提交
954
/*
K
Krishna Gudipati 已提交
955 956
 * Host IOC function is being enabled, awaiting response from firmware.
 * Semaphore is acquired.
957 958
 */
static void
K
Krishna Gudipati 已提交
959
bfa_iocpf_sm_enabling(struct bfa_iocpf_s *iocpf, enum iocpf_event event)
960
{
K
Krishna Gudipati 已提交
961 962
	struct bfa_ioc_s *ioc = iocpf->ioc;

963 964 965
	bfa_trc(ioc, event);

	switch (event) {
K
Krishna Gudipati 已提交
966 967
	case IOCPF_E_FWRSP_ENABLE:
		bfa_iocpf_timer_stop(ioc);
968
		writel(1, ioc->ioc_regs.ioc_sem_reg);
K
Krishna Gudipati 已提交
969
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_ready);
970 971
		break;

K
Krishna Gudipati 已提交
972 973
	case IOCPF_E_INITFAIL:
		bfa_iocpf_timer_stop(ioc);
974
		/*
K
Krishna Gudipati 已提交
975
		 * !!! fall through !!!
976 977
		 */

K
Krishna Gudipati 已提交
978
	case IOCPF_E_TIMEOUT:
979
		writel(1, ioc->ioc_regs.ioc_sem_reg);
K
Krishna Gudipati 已提交
980
		if (event == IOCPF_E_TIMEOUT)
981
			bfa_fsm_send_event(ioc, IOC_E_PFFAILED);
982
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_initfail_sync);
983 984
		break;

K
Krishna Gudipati 已提交
985 986
	case IOCPF_E_DISABLE:
		bfa_iocpf_timer_stop(ioc);
987
		writel(1, ioc->ioc_regs.ioc_sem_reg);
K
Krishna Gudipati 已提交
988 989 990
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabling);
		break;

991 992 993 994 995 996
	default:
		bfa_sm_fault(ioc, event);
	}
}

static void
K
Krishna Gudipati 已提交
997
bfa_iocpf_sm_ready_entry(struct bfa_iocpf_s *iocpf)
998
{
999
	bfa_fsm_send_event(iocpf->ioc, IOC_E_ENABLED);
1000 1001 1002
}

static void
K
Krishna Gudipati 已提交
1003
bfa_iocpf_sm_ready(struct bfa_iocpf_s *iocpf, enum iocpf_event event)
1004
{
K
Krishna Gudipati 已提交
1005 1006
	struct bfa_ioc_s *ioc = iocpf->ioc;

1007 1008 1009
	bfa_trc(ioc, event);

	switch (event) {
K
Krishna Gudipati 已提交
1010 1011 1012 1013 1014
	case IOCPF_E_DISABLE:
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabling);
		break;

	case IOCPF_E_GETATTRFAIL:
1015
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_initfail_sync);
1016 1017
		break;

K
Krishna Gudipati 已提交
1018
	case IOCPF_E_FAIL:
1019
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_fail_sync);
1020 1021 1022 1023 1024 1025 1026 1027
		break;

	default:
		bfa_sm_fault(ioc, event);
	}
}

static void
K
Krishna Gudipati 已提交
1028
bfa_iocpf_sm_disabling_entry(struct bfa_iocpf_s *iocpf)
1029
{
K
Krishna Gudipati 已提交
1030 1031
	bfa_iocpf_timer_start(iocpf->ioc);
	bfa_ioc_send_disable(iocpf->ioc);
1032 1033
}

J
Jing Huang 已提交
1034
/*
1035 1036 1037
 * IOC is being disabled
 */
static void
K
Krishna Gudipati 已提交
1038
bfa_iocpf_sm_disabling(struct bfa_iocpf_s *iocpf, enum iocpf_event event)
1039
{
K
Krishna Gudipati 已提交
1040 1041
	struct bfa_ioc_s *ioc = iocpf->ioc;

1042 1043 1044
	bfa_trc(ioc, event);

	switch (event) {
K
Krishna Gudipati 已提交
1045 1046
	case IOCPF_E_FWRSP_DISABLE:
		bfa_iocpf_timer_stop(ioc);
1047
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabling_sync);
1048 1049
		break;

K
Krishna Gudipati 已提交
1050 1051
	case IOCPF_E_FAIL:
		bfa_iocpf_timer_stop(ioc);
1052 1053 1054 1055
		/*
		 * !!! fall through !!!
		 */

K
Krishna Gudipati 已提交
1056
	case IOCPF_E_TIMEOUT:
1057
		writel(BFI_IOC_FAIL, ioc->ioc_regs.ioc_fwstate);
1058
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabling_sync);
K
Krishna Gudipati 已提交
1059 1060 1061
		break;

	case IOCPF_E_FWRSP_ENABLE:
1062 1063 1064 1065 1066 1067 1068
		break;

	default:
		bfa_sm_fault(ioc, event);
	}
}

1069 1070 1071 1072 1073 1074
static void
bfa_iocpf_sm_disabling_sync_entry(struct bfa_iocpf_s *iocpf)
{
	bfa_ioc_hw_sem_get(iocpf->ioc);
}

1075
/*
1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091
 * IOC hb ack request is being removed.
 */
static void
bfa_iocpf_sm_disabling_sync(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:
		bfa_ioc_sync_leave(ioc);
		writel(1, ioc->ioc_regs.ioc_sem_reg);
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabled);
		break;

K
Krishna Gudipati 已提交
1092 1093 1094 1095 1096
	case IOCPF_E_SEM_ERROR:
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_fail);
		bfa_fsm_send_event(ioc, IOC_E_HWFAILED);
		break;

1097 1098 1099 1100 1101 1102 1103 1104
	case IOCPF_E_FAIL:
		break;

	default:
		bfa_sm_fault(ioc, event);
	}
}

J
Jing Huang 已提交
1105
/*
1106 1107 1108
 * IOC disable completion entry.
 */
static void
K
Krishna Gudipati 已提交
1109
bfa_iocpf_sm_disabled_entry(struct bfa_iocpf_s *iocpf)
1110
{
1111
	bfa_ioc_mbox_flush(iocpf->ioc);
1112
	bfa_fsm_send_event(iocpf->ioc, IOC_E_DISABLED);
1113 1114 1115
}

static void
K
Krishna Gudipati 已提交
1116
bfa_iocpf_sm_disabled(struct bfa_iocpf_s *iocpf, enum iocpf_event event)
1117
{
K
Krishna Gudipati 已提交
1118 1119
	struct bfa_ioc_s *ioc = iocpf->ioc;

1120 1121 1122
	bfa_trc(ioc, event);

	switch (event) {
K
Krishna Gudipati 已提交
1123 1124
	case IOCPF_E_ENABLE:
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_semwait);
1125 1126
		break;

K
Krishna Gudipati 已提交
1127
	case IOCPF_E_STOP:
1128
		bfa_ioc_firmware_unlock(ioc);
K
Krishna Gudipati 已提交
1129
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_reset);
1130 1131 1132 1133 1134 1135 1136
		break;

	default:
		bfa_sm_fault(ioc, event);
	}
}

1137 1138 1139
static void
bfa_iocpf_sm_initfail_sync_entry(struct bfa_iocpf_s *iocpf)
{
K
Krishna Gudipati 已提交
1140
	bfa_ioc_debug_save_ftrc(iocpf->ioc);
1141 1142 1143
	bfa_ioc_hw_sem_get(iocpf->ioc);
}

1144
/*
1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156
 * Hardware initialization failed.
 */
static void
bfa_iocpf_sm_initfail_sync(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:
		bfa_ioc_notify_fail(ioc);
1157 1158 1159 1160
		bfa_ioc_sync_leave(ioc);
		writel(BFI_IOC_FAIL, ioc->ioc_regs.ioc_fwstate);
		writel(1, ioc->ioc_regs.ioc_sem_reg);
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_initfail);
1161 1162
		break;

K
Krishna Gudipati 已提交
1163 1164 1165 1166 1167
	case IOCPF_E_SEM_ERROR:
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_fail);
		bfa_fsm_send_event(ioc, IOC_E_HWFAILED);
		break;

1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186
	case IOCPF_E_DISABLE:
		bfa_sem_timer_stop(ioc);
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabling_sync);
		break;

	case IOCPF_E_STOP:
		bfa_sem_timer_stop(ioc);
		bfa_ioc_firmware_unlock(ioc);
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_reset);
		break;

	case IOCPF_E_FAIL:
		break;

	default:
		bfa_sm_fault(ioc, event);
	}
}

1187
static void
K
Krishna Gudipati 已提交
1188
bfa_iocpf_sm_initfail_entry(struct bfa_iocpf_s *iocpf)
1189
{
K
Krishna Gudipati 已提交
1190
	bfa_trc(iocpf->ioc, 0);
1191 1192
}

J
Jing Huang 已提交
1193
/*
1194 1195 1196
 * Hardware initialization failed.
 */
static void
K
Krishna Gudipati 已提交
1197
bfa_iocpf_sm_initfail(struct bfa_iocpf_s *iocpf, enum iocpf_event event)
1198
{
K
Krishna Gudipati 已提交
1199 1200
	struct bfa_ioc_s *ioc = iocpf->ioc;

1201 1202 1203
	bfa_trc(ioc, event);

	switch (event) {
K
Krishna Gudipati 已提交
1204 1205
	case IOCPF_E_DISABLE:
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabled);
1206 1207
		break;

K
Krishna Gudipati 已提交
1208
	case IOCPF_E_STOP:
1209
		bfa_ioc_firmware_unlock(ioc);
K
Krishna Gudipati 已提交
1210
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_reset);
1211 1212 1213 1214 1215 1216 1217 1218
		break;

	default:
		bfa_sm_fault(ioc, event);
	}
}

static void
1219
bfa_iocpf_sm_fail_sync_entry(struct bfa_iocpf_s *iocpf)
1220
{
1221
	/*
1222 1223
	 * Mark IOC as failed in hardware and stop firmware.
	 */
K
Krishna Gudipati 已提交
1224
	bfa_ioc_lpu_stop(iocpf->ioc);
1225

1226
	/*
1227 1228
	 * Flush any queued up mailbox requests.
	 */
1229
	bfa_ioc_mbox_flush(iocpf->ioc);
1230

1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246
	bfa_ioc_hw_sem_get(iocpf->ioc);
}

static void
bfa_iocpf_sm_fail_sync(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:
		bfa_ioc_sync_ack(ioc);
		bfa_ioc_notify_fail(ioc);
		if (!iocpf->auto_recover) {
			bfa_ioc_sync_leave(ioc);
1247
			writel(BFI_IOC_FAIL, ioc->ioc_regs.ioc_fwstate);
1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259
			writel(1, ioc->ioc_regs.ioc_sem_reg);
			bfa_fsm_set_state(iocpf, bfa_iocpf_sm_fail);
		} else {
			if (bfa_ioc_sync_complete(ioc))
				bfa_fsm_set_state(iocpf, bfa_iocpf_sm_hwinit);
			else {
				writel(1, ioc->ioc_regs.ioc_sem_reg);
				bfa_fsm_set_state(iocpf, bfa_iocpf_sm_semwait);
			}
		}
		break;

K
Krishna Gudipati 已提交
1260 1261 1262 1263 1264
	case IOCPF_E_SEM_ERROR:
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_fail);
		bfa_fsm_send_event(ioc, IOC_E_HWFAILED);
		break;

1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280
	case IOCPF_E_DISABLE:
		bfa_sem_timer_stop(ioc);
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabling_sync);
		break;

	case IOCPF_E_FAIL:
		break;

	default:
		bfa_sm_fault(ioc, event);
	}
}

static void
bfa_iocpf_sm_fail_entry(struct bfa_iocpf_s *iocpf)
{
K
Krishna Gudipati 已提交
1281
	bfa_trc(iocpf->ioc, 0);
1282 1283
}

J
Jing Huang 已提交
1284
/*
K
Krishna Gudipati 已提交
1285
 * IOC is in failed state.
1286 1287
 */
static void
K
Krishna Gudipati 已提交
1288
bfa_iocpf_sm_fail(struct bfa_iocpf_s *iocpf, enum iocpf_event event)
1289
{
K
Krishna Gudipati 已提交
1290 1291
	struct bfa_ioc_s *ioc = iocpf->ioc;

1292 1293 1294
	bfa_trc(ioc, event);

	switch (event) {
K
Krishna Gudipati 已提交
1295 1296
	case IOCPF_E_DISABLE:
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabled);
1297 1298 1299 1300 1301 1302 1303
		break;

	default:
		bfa_sm_fault(ioc, event);
	}
}

J
Jing Huang 已提交
1304
/*
1305
 *  BFA IOC private functions
1306 1307
 */

1308 1309 1310
/*
 * Notify common modules registered for notification.
 */
1311
static void
1312
bfa_ioc_event_notify(struct bfa_ioc_s *ioc, enum bfa_ioc_event_e event)
1313
{
1314 1315
	struct bfa_ioc_notify_s	*notify;
	struct list_head	*qe;
1316

1317 1318 1319
	list_for_each(qe, &ioc->notify_q) {
		notify = (struct bfa_ioc_notify_s *)qe;
		notify->cbfn(notify->cbarg, event);
1320 1321 1322
	}
}

1323 1324 1325 1326 1327 1328 1329
static void
bfa_ioc_disable_comp(struct bfa_ioc_s *ioc)
{
	ioc->cbfn->disable_cbfn(ioc->bfa);
	bfa_ioc_event_notify(ioc, BFA_IOC_E_DISABLED);
}

1330
bfa_boolean_t
1331
bfa_ioc_sem_get(void __iomem *sem_reg)
1332
{
1333 1334
	u32 r32;
	int cnt = 0;
K
Krishna Gudipati 已提交
1335
#define BFA_SEM_SPINCNT	3000
1336

1337
	r32 = readl(sem_reg);
1338

1339
	while ((r32 & 1) && (cnt < BFA_SEM_SPINCNT)) {
1340
		cnt++;
1341
		udelay(2);
1342
		r32 = readl(sem_reg);
1343 1344
	}

1345
	if (!(r32 & 1))
1346 1347 1348
		return BFA_TRUE;

	return BFA_FALSE;
1349 1350 1351 1352 1353
}

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

J
Jing Huang 已提交
1356
	/*
1357
	 * First read to the semaphore register will return 0, subsequent reads
1358
	 * will return 1. Semaphore is released by writing 1 to the register
1359
	 */
1360
	r32 = readl(ioc->ioc_regs.ioc_sem_reg);
K
Krishna Gudipati 已提交
1361 1362 1363 1364 1365
	if (r32 == ~0) {
		WARN_ON(r32 == ~0);
		bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_SEM_ERROR);
		return;
	}
1366
	if (!(r32 & 1)) {
K
Krishna Gudipati 已提交
1367
		bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_SEMLOCKED);
1368 1369 1370
		return;
	}

K
Krishna Gudipati 已提交
1371
	bfa_sem_timer_start(ioc);
1372 1373
}

J
Jing Huang 已提交
1374
/*
1375 1376 1377 1378 1379
 * Initialize LPU local memory (aka secondary memory / SRAM)
 */
static void
bfa_ioc_lmem_init(struct bfa_ioc_s *ioc)
{
K
Krishna Gudipati 已提交
1380 1381
	u32	pss_ctl;
	int		i;
1382 1383
#define PSS_LMEM_INIT_TIME  10000

1384
	pss_ctl = readl(ioc->ioc_regs.pss_ctl_reg);
1385 1386
	pss_ctl &= ~__PSS_LMEM_RESET;
	pss_ctl |= __PSS_LMEM_INIT_EN;
K
Krishna Gudipati 已提交
1387 1388 1389 1390 1391

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

J
Jing Huang 已提交
1394
	/*
1395 1396 1397 1398
	 * wait for memory initialization to be complete
	 */
	i = 0;
	do {
1399
		pss_ctl = readl(ioc->ioc_regs.pss_ctl_reg);
1400 1401 1402
		i++;
	} while (!(pss_ctl & __PSS_LMEM_INIT_DONE) && (i < PSS_LMEM_INIT_TIME));

J
Jing Huang 已提交
1403
	/*
1404 1405 1406
	 * If memory initialization is not successful, IOC timeout will catch
	 * such failures.
	 */
1407
	WARN_ON(!(pss_ctl & __PSS_LMEM_INIT_DONE));
1408 1409 1410
	bfa_trc(ioc, pss_ctl);

	pss_ctl &= ~(__PSS_LMEM_INIT_DONE | __PSS_LMEM_INIT_EN);
1411
	writel(pss_ctl, ioc->ioc_regs.pss_ctl_reg);
1412 1413 1414 1415 1416
}

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

J
Jing Huang 已提交
1419
	/*
1420 1421
	 * Take processor out of reset.
	 */
1422
	pss_ctl = readl(ioc->ioc_regs.pss_ctl_reg);
1423 1424
	pss_ctl &= ~__PSS_LPU0_RESET;

1425
	writel(pss_ctl, ioc->ioc_regs.pss_ctl_reg);
1426 1427 1428 1429 1430
}

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

J
Jing Huang 已提交
1433
	/*
1434 1435
	 * Put processors in reset.
	 */
1436
	pss_ctl = readl(ioc->ioc_regs.pss_ctl_reg);
1437 1438
	pss_ctl |= (__PSS_LPU0_RESET | __PSS_LPU1_RESET);

1439
	writel(pss_ctl, ioc->ioc_regs.pss_ctl_reg);
1440 1441
}

J
Jing Huang 已提交
1442
/*
1443 1444
 * Get driver and firmware versions.
 */
1445
void
1446 1447
bfa_ioc_fwver_get(struct bfa_ioc_s *ioc, struct bfi_ioc_image_hdr_s *fwhdr)
{
K
Krishna Gudipati 已提交
1448 1449 1450 1451
	u32	pgnum, pgoff;
	u32	loff = 0;
	int		i;
	u32	*fwsig = (u32 *) fwhdr;
1452

1453 1454
	pgnum = PSS_SMEM_PGNUM(ioc->ioc_regs.smem_pg0, loff);
	pgoff = PSS_SMEM_PGOFF(loff);
1455
	writel(pgnum, ioc->ioc_regs.host_page_num_fn);
1456 1457 1458

	for (i = 0; i < (sizeof(struct bfi_ioc_image_hdr_s) / sizeof(u32));
	     i++) {
K
Krishna Gudipati 已提交
1459 1460
		fwsig[i] =
			bfa_mem_read(ioc->ioc_regs.smem_page_start, loff);
1461 1462 1463 1464
		loff += sizeof(u32);
	}
}

J
Jing Huang 已提交
1465
/*
1466 1467
 * Returns TRUE if same.
 */
1468
bfa_boolean_t
1469 1470 1471
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 已提交
1472
	int i;
1473

J
Jing Huang 已提交
1474
	drv_fwhdr = (struct bfi_ioc_image_hdr_s *)
1475
		bfa_cb_image_get_chunk(bfa_ioc_asic_gen(ioc), 0);
1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489

	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 已提交
1490
/*
1491 1492 1493
 * Return true if current running version is valid. Firmware signature and
 * execution context (driver/bios) must match.
 */
K
Krishna Gudipati 已提交
1494 1495
static bfa_boolean_t
bfa_ioc_fwver_valid(struct bfa_ioc_s *ioc, u32 boot_env)
1496 1497 1498 1499
{
	struct bfi_ioc_image_hdr_s fwhdr, *drv_fwhdr;

	bfa_ioc_fwver_get(ioc, &fwhdr);
J
Jing Huang 已提交
1500
	drv_fwhdr = (struct bfi_ioc_image_hdr_s *)
1501
		bfa_cb_image_get_chunk(bfa_ioc_asic_gen(ioc), 0);
1502 1503 1504 1505 1506 1507 1508

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

1509 1510
	if (swab32(fwhdr.bootenv) != boot_env) {
		bfa_trc(ioc, fwhdr.bootenv);
K
Krishna Gudipati 已提交
1511
		bfa_trc(ioc, boot_env);
1512 1513 1514 1515 1516 1517
		return BFA_FALSE;
	}

	return bfa_ioc_fwver_cmp(ioc, &fwhdr);
}

J
Jing Huang 已提交
1518
/*
1519 1520 1521 1522 1523
 * Conditionally flush any pending message from firmware at start.
 */
static void
bfa_ioc_msgflush(struct bfa_ioc_s *ioc)
{
K
Krishna Gudipati 已提交
1524
	u32	r32;
1525

1526
	r32 = readl(ioc->ioc_regs.lpu_mbox_cmd);
1527
	if (r32)
1528
		writel(1, ioc->ioc_regs.lpu_mbox_cmd);
1529 1530 1531 1532 1533 1534
}

static void
bfa_ioc_hwinit(struct bfa_ioc_s *ioc, bfa_boolean_t force)
{
	enum bfi_ioc_state ioc_fwstate;
K
Krishna Gudipati 已提交
1535 1536 1537
	bfa_boolean_t fwvalid;
	u32 boot_type;
	u32 boot_env;
1538

1539
	ioc_fwstate = readl(ioc->ioc_regs.ioc_fwstate);
1540 1541 1542 1543 1544 1545

	if (force)
		ioc_fwstate = BFI_IOC_UNINIT;

	bfa_trc(ioc, ioc_fwstate);

1546 1547
	boot_type = BFI_FWBOOT_TYPE_NORMAL;
	boot_env = BFI_FWBOOT_ENV_OS;
K
Krishna Gudipati 已提交
1548

J
Jing Huang 已提交
1549
	/*
1550 1551 1552
	 * check if firmware is valid
	 */
	fwvalid = (ioc_fwstate == BFI_IOC_UNINIT) ?
K
Krishna Gudipati 已提交
1553
		BFA_FALSE : bfa_ioc_fwver_valid(ioc, boot_env);
1554 1555

	if (!fwvalid) {
K
Krishna Gudipati 已提交
1556
		bfa_ioc_boot(ioc, boot_type, boot_env);
1557
		bfa_ioc_poll_fwinit(ioc);
1558 1559 1560
		return;
	}

J
Jing Huang 已提交
1561
	/*
1562 1563 1564 1565
	 * If hardware initialization is in progress (initialized by other IOC),
	 * just wait for an initialization completion interrupt.
	 */
	if (ioc_fwstate == BFI_IOC_INITING) {
1566
		bfa_ioc_poll_fwinit(ioc);
1567 1568 1569
		return;
	}

J
Jing Huang 已提交
1570
	/*
1571 1572
	 * If IOC function is disabled and firmware version is same,
	 * just re-enable IOC.
J
Jing Huang 已提交
1573 1574 1575 1576
	 *
	 * If option rom, IOC must not be in operational state. With
	 * convergence, IOC will be in operational state when 2nd driver
	 * is loaded.
1577
	 */
1578
	if (ioc_fwstate == BFI_IOC_DISABLED || ioc_fwstate == BFI_IOC_OP) {
1579

J
Jing Huang 已提交
1580
		/*
1581 1582 1583 1584
		 * When using MSI-X any pending firmware ready event should
		 * be flushed. Otherwise MSI-X interrupts are not delivered.
		 */
		bfa_ioc_msgflush(ioc);
K
Krishna Gudipati 已提交
1585
		bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_FWREADY);
1586 1587 1588
		return;
	}

J
Jing Huang 已提交
1589
	/*
1590 1591
	 * Initialize the h/w for any other states.
	 */
K
Krishna Gudipati 已提交
1592
	bfa_ioc_boot(ioc, boot_type, boot_env);
1593
	bfa_ioc_poll_fwinit(ioc);
1594 1595 1596 1597 1598
}

static void
bfa_ioc_timeout(void *ioc_arg)
{
K
Krishna Gudipati 已提交
1599
	struct bfa_ioc_s  *ioc = (struct bfa_ioc_s *) ioc_arg;
1600 1601 1602 1603 1604 1605 1606 1607

	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 已提交
1608 1609
	u32 *msgp = (u32 *) ioc_msg;
	u32 i;
1610 1611 1612 1613

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

1614
	WARN_ON(len > BFI_IOC_MSGLEN_MAX);
1615 1616 1617 1618 1619

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

	for (; i < BFI_IOC_MSGLEN_MAX / sizeof(u32); i++)
1624
		writel(0, ioc->ioc_regs.hfn_mbox + i * sizeof(u32));
1625 1626 1627 1628

	/*
	 * write 1 to mailbox CMD to trigger LPU event
	 */
1629 1630
	writel(1, ioc->ioc_regs.hfn_mbox_cmd);
	(void) readl(ioc->ioc_regs.hfn_mbox_cmd);
1631 1632 1633 1634 1635 1636
}

static void
bfa_ioc_send_enable(struct bfa_ioc_s *ioc)
{
	struct bfi_ioc_ctrl_req_s enable_req;
M
Maggie Zhang 已提交
1637
	struct timeval tv;
1638 1639 1640

	bfi_h2i_set(enable_req.mh, BFI_MC_IOC, BFI_IOC_H2I_ENABLE_REQ,
		    bfa_ioc_portid(ioc));
1641
	enable_req.clscode = cpu_to_be16(ioc->clscode);
M
Maggie Zhang 已提交
1642
	do_gettimeofday(&tv);
1643
	enable_req.tv_sec = be32_to_cpu(tv.tv_sec);
1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659
	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 已提交
1660
	struct bfi_ioc_getattr_req_s	attr_req;
1661 1662 1663 1664 1665 1666 1667 1668 1669 1670

	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)
{
1671
	struct bfa_ioc_s  *ioc = cbarg;
K
Krishna Gudipati 已提交
1672
	u32	hb_count;
1673

1674
	hb_count = readl(ioc->ioc_regs.heartbeat);
1675 1676 1677
	if (ioc->hb_count == hb_count) {
		bfa_ioc_recover(ioc);
		return;
1678 1679
	} else {
		ioc->hb_count = hb_count;
1680 1681 1682
	}

	bfa_ioc_mbox_poll(ioc);
K
Krishna Gudipati 已提交
1683
	bfa_hb_timer_start(ioc);
1684 1685 1686 1687 1688
}

static void
bfa_ioc_hb_monitor(struct bfa_ioc_s *ioc)
{
1689
	ioc->hb_count = readl(ioc->ioc_regs.heartbeat);
K
Krishna Gudipati 已提交
1690
	bfa_hb_timer_start(ioc);
1691 1692
}

J
Jing Huang 已提交
1693
/*
K
Krishna Gudipati 已提交
1694
 *	Initiate a full firmware download.
1695 1696 1697
 */
static void
bfa_ioc_download_fw(struct bfa_ioc_s *ioc, u32 boot_type,
K
Krishna Gudipati 已提交
1698
		    u32 boot_env)
1699
{
K
Krishna Gudipati 已提交
1700 1701 1702 1703 1704
	u32 *fwimg;
	u32 pgnum, pgoff;
	u32 loff = 0;
	u32 chunkno = 0;
	u32 i;
1705
	u32 asicmode;
1706

J
Jing Huang 已提交
1707
	/*
1708 1709 1710 1711
	 * Initialize LMEM first before code download
	 */
	bfa_ioc_lmem_init(ioc);

1712 1713
	bfa_trc(ioc, bfa_cb_image_get_size(bfa_ioc_asic_gen(ioc)));
	fwimg = bfa_cb_image_get_chunk(bfa_ioc_asic_gen(ioc), chunkno);
1714

1715 1716
	pgnum = PSS_SMEM_PGNUM(ioc->ioc_regs.smem_pg0, loff);
	pgoff = PSS_SMEM_PGOFF(loff);
1717

1718
	writel(pgnum, ioc->ioc_regs.host_page_num_fn);
1719

1720
	for (i = 0; i < bfa_cb_image_get_size(bfa_ioc_asic_gen(ioc)); i++) {
1721

1722 1723
		if (BFA_IOC_FLASH_CHUNK_NO(i) != chunkno) {
			chunkno = BFA_IOC_FLASH_CHUNK_NO(i);
1724
			fwimg = bfa_cb_image_get_chunk(bfa_ioc_asic_gen(ioc),
1725
					BFA_IOC_FLASH_CHUNK_ADDR(chunkno));
1726 1727
		}

J
Jing Huang 已提交
1728
		/*
1729 1730 1731
		 * write smem
		 */
		bfa_mem_write(ioc->ioc_regs.smem_page_start, loff,
1732
			      fwimg[BFA_IOC_FLASH_OFFSET_IN_CHUNK(i)]);
1733 1734 1735

		loff += sizeof(u32);

J
Jing Huang 已提交
1736
		/*
1737 1738 1739 1740 1741
		 * handle page offset wrap around
		 */
		loff = PSS_SMEM_PGOFF(loff);
		if (loff == 0) {
			pgnum++;
1742
			writel(pgnum, ioc->ioc_regs.host_page_num_fn);
1743 1744 1745
		}
	}

1746 1747
	writel(PSS_SMEM_PGNUM(ioc->ioc_regs.smem_pg0, 0),
			ioc->ioc_regs.host_page_num_fn);
1748 1749

	/*
1750 1751 1752 1753 1754 1755 1756
	 * Set boot type and device mode at the end.
	 */
	asicmode = BFI_FWBOOT_DEVMODE(ioc->asic_gen, ioc->asic_mode,
				ioc->port0_mode, ioc->port1_mode);
	bfa_mem_write(ioc->ioc_regs.smem_page_start, BFI_FWBOOT_DEVMODE_OFF,
			swab32(asicmode));
	bfa_mem_write(ioc->ioc_regs.smem_page_start, BFI_FWBOOT_TYPE_OFF,
1757
			swab32(boot_type));
1758
	bfa_mem_write(ioc->ioc_regs.smem_page_start, BFI_FWBOOT_ENV_OFF,
1759
			swab32(boot_env));
K
Krishna Gudipati 已提交
1760 1761 1762
}


J
Jing Huang 已提交
1763
/*
K
Krishna Gudipati 已提交
1764 1765 1766 1767 1768 1769 1770
 * 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;

1771 1772 1773
	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 已提交
1774
	ioc->fcmode	= (attr->port_mode == BFI_PORT_MODE_FC);
K
Krishna Gudipati 已提交
1775 1776 1777 1778

	bfa_fsm_send_event(ioc, IOC_E_FWRSP_GETATTR);
}

J
Jing Huang 已提交
1779
/*
K
Krishna Gudipati 已提交
1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794
 * 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 已提交
1795
/*
K
Krishna Gudipati 已提交
1796 1797 1798 1799 1800 1801 1802 1803 1804
 * 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 已提交
1805
	/*
K
Krishna Gudipati 已提交
1806 1807 1808 1809 1810
	 * If no command pending, do nothing
	 */
	if (list_empty(&mod->cmd_q))
		return;

J
Jing Huang 已提交
1811
	/*
K
Krishna Gudipati 已提交
1812 1813
	 * If previous command is not yet fetched by firmware, do nothing
	 */
1814
	stat = readl(ioc->ioc_regs.hfn_mbox_cmd);
K
Krishna Gudipati 已提交
1815 1816 1817
	if (stat)
		return;

J
Jing Huang 已提交
1818
	/*
K
Krishna Gudipati 已提交
1819 1820 1821 1822 1823 1824
	 * Enqueue command to firmware.
	 */
	bfa_q_deq(&mod->cmd_q, &cmd);
	bfa_ioc_mbox_send(ioc, cmd->msg, sizeof(cmd->msg));
}

J
Jing Huang 已提交
1825
/*
K
Krishna Gudipati 已提交
1826 1827 1828
 * Cleanup any pending requests.
 */
static void
1829
bfa_ioc_mbox_flush(struct bfa_ioc_s *ioc)
K
Krishna Gudipati 已提交
1830 1831 1832 1833 1834 1835 1836 1837
{
	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 已提交
1838
/*
K
Krishna Gudipati 已提交
1839 1840 1841 1842 1843 1844 1845 1846 1847 1848
 * 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)
{
1849 1850
	u32 pgnum, loff;
	__be32 r32;
K
Krishna Gudipati 已提交
1851 1852 1853
	int i, len;
	u32 *buf = tbuf;

1854 1855
	pgnum = PSS_SMEM_PGNUM(ioc->ioc_regs.smem_pg0, soff);
	loff = PSS_SMEM_PGOFF(soff);
K
Krishna Gudipati 已提交
1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867
	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;
	}

1868
	writel(pgnum, ioc->ioc_regs.host_page_num_fn);
K
Krishna Gudipati 已提交
1869 1870 1871 1872 1873

	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);
1874
		buf[i] = be32_to_cpu(r32);
K
Krishna Gudipati 已提交
1875 1876
		loff += sizeof(u32);

J
Jing Huang 已提交
1877
		/*
K
Krishna Gudipati 已提交
1878 1879 1880 1881 1882
		 * handle page offset wrap around
		 */
		loff = PSS_SMEM_PGOFF(loff);
		if (loff == 0) {
			pgnum++;
1883
			writel(pgnum, ioc->ioc_regs.host_page_num_fn);
K
Krishna Gudipati 已提交
1884 1885
		}
	}
1886 1887
	writel(PSS_SMEM_PGNUM(ioc->ioc_regs.smem_pg0, 0),
			ioc->ioc_regs.host_page_num_fn);
K
Krishna Gudipati 已提交
1888 1889 1890
	/*
	 *  release semaphore.
	 */
K
Krishna Gudipati 已提交
1891
	readl(ioc->ioc_regs.ioc_init_sem_reg);
1892
	writel(1, ioc->ioc_regs.ioc_init_sem_reg);
K
Krishna Gudipati 已提交
1893 1894 1895 1896 1897

	bfa_trc(ioc, pgnum);
	return BFA_STATUS_OK;
}

J
Jing Huang 已提交
1898
/*
K
Krishna Gudipati 已提交
1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910
 * 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;

1911 1912
	pgnum = PSS_SMEM_PGNUM(ioc->ioc_regs.smem_pg0, soff);
	loff = PSS_SMEM_PGOFF(soff);
K
Krishna Gudipati 已提交
1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924
	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;
	}

1925
	writel(pgnum, ioc->ioc_regs.host_page_num_fn);
K
Krishna Gudipati 已提交
1926 1927 1928 1929 1930 1931 1932

	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 已提交
1933
		/*
K
Krishna Gudipati 已提交
1934 1935 1936 1937 1938
		 * handle page offset wrap around
		 */
		loff = PSS_SMEM_PGOFF(loff);
		if (loff == 0) {
			pgnum++;
1939
			writel(pgnum, ioc->ioc_regs.host_page_num_fn);
K
Krishna Gudipati 已提交
1940 1941
		}
	}
1942 1943
	writel(PSS_SMEM_PGNUM(ioc->ioc_regs.smem_pg0, 0),
			ioc->ioc_regs.host_page_num_fn);
K
Krishna Gudipati 已提交
1944 1945 1946 1947

	/*
	 *  release semaphore.
	 */
K
Krishna Gudipati 已提交
1948
	readl(ioc->ioc_regs.ioc_init_sem_reg);
1949
	writel(1, ioc->ioc_regs.ioc_init_sem_reg);
K
Krishna Gudipati 已提交
1950 1951
	bfa_trc(ioc, pgnum);
	return BFA_STATUS_OK;
1952 1953
}

1954 1955 1956 1957 1958
static void
bfa_ioc_fail_notify(struct bfa_ioc_s *ioc)
{
	struct bfad_s *bfad = (struct bfad_s *)ioc->bfa->bfad;

1959
	/*
1960 1961 1962
	 * Notify driver and common modules registered for notification.
	 */
	ioc->cbfn->hbfail_cbfn(ioc->bfa);
1963
	bfa_ioc_event_notify(ioc, BFA_IOC_E_FAILED);
1964 1965 1966 1967 1968 1969 1970 1971

	bfa_ioc_debug_save_ftrc(ioc);

	BFA_LOG(KERN_CRIT, bfad, bfa_log_level,
		"Heart Beat of IOC has failed\n");

}

1972
static void
K
Krishna Gudipati 已提交
1973
bfa_ioc_pf_fwmismatch(struct bfa_ioc_s *ioc)
1974
{
K
Krishna Gudipati 已提交
1975
	struct bfad_s *bfad = (struct bfad_s *)ioc->bfa->bfad;
J
Jing Huang 已提交
1976
	/*
K
Krishna Gudipati 已提交
1977
	 * Provide enable completion callback.
1978
	 */
K
Krishna Gudipati 已提交
1979
	ioc->cbfn->enable_cbfn(ioc->bfa, BFA_STATUS_IOC_FAILURE);
1980
	BFA_LOG(KERN_WARNING, bfad, bfa_log_level,
K
Krishna Gudipati 已提交
1981 1982 1983
		"Running firmware version is incompatible "
		"with the driver version\n");
}
1984

K
Krishna Gudipati 已提交
1985 1986
bfa_status_t
bfa_ioc_pll_init(struct bfa_ioc_s *ioc)
1987 1988
{

K
Krishna Gudipati 已提交
1989 1990 1991 1992
	/*
	 *  Hold semaphore so that nobody can access the chip during init.
	 */
	bfa_ioc_sem_get(ioc->ioc_regs.ioc_init_sem_reg);
1993

K
Krishna Gudipati 已提交
1994 1995 1996 1997 1998 1999
	bfa_ioc_pll_init_asic(ioc);

	ioc->pllinit = BFA_TRUE;
	/*
	 *  release semaphore.
	 */
K
Krishna Gudipati 已提交
2000
	readl(ioc->ioc_regs.ioc_init_sem_reg);
2001
	writel(1, ioc->ioc_regs.ioc_init_sem_reg);
K
Krishna Gudipati 已提交
2002 2003 2004

	return BFA_STATUS_OK;
}
2005

J
Jing Huang 已提交
2006
/*
2007 2008 2009 2010
 * Interface used by diag module to do firmware boot with memory test
 * as the entry vector.
 */
void
K
Krishna Gudipati 已提交
2011
bfa_ioc_boot(struct bfa_ioc_s *ioc, u32 boot_type, u32 boot_env)
2012 2013 2014 2015 2016 2017
{
	bfa_ioc_stats(ioc, ioc_boots);

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

J
Jing Huang 已提交
2018
	/*
2019 2020
	 * Initialize IOC state of all functions on a chip reset.
	 */
2021 2022 2023
	if (boot_type == BFI_FWBOOT_TYPE_MEMTEST) {
		writel(BFI_IOC_MEMTEST, ioc->ioc_regs.ioc_fwstate);
		writel(BFI_IOC_MEMTEST, ioc->ioc_regs.alt_ioc_fwstate);
2024
	} else {
2025 2026
		writel(BFI_IOC_INITING, ioc->ioc_regs.ioc_fwstate);
		writel(BFI_IOC_INITING, ioc->ioc_regs.alt_ioc_fwstate);
2027 2028
	}

J
Jing Huang 已提交
2029
	bfa_ioc_msgflush(ioc);
K
Krishna Gudipati 已提交
2030
	bfa_ioc_download_fw(ioc, boot_type, boot_env);
2031 2032 2033
	bfa_ioc_lpu_start(ioc);
}

J
Jing Huang 已提交
2034
/*
2035 2036 2037 2038 2039
 * Enable/disable IOC failure auto recovery.
 */
void
bfa_ioc_auto_recover(bfa_boolean_t auto_recover)
{
2040
	bfa_auto_recover = auto_recover;
2041 2042 2043
}


K
Krishna Gudipati 已提交
2044

2045 2046 2047 2048 2049 2050
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 已提交
2051 2052 2053
bfa_boolean_t
bfa_ioc_is_initialized(struct bfa_ioc_s *ioc)
{
2054
	u32 r32 = readl(ioc->ioc_regs.ioc_fwstate);
K
Krishna Gudipati 已提交
2055 2056 2057 2058 2059 2060

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

2061
bfa_boolean_t
2062 2063
bfa_ioc_msgget(struct bfa_ioc_s *ioc, void *mbmsg)
{
2064
	__be32	*msgp = mbmsg;
K
Krishna Gudipati 已提交
2065 2066
	u32	r32;
	int		i;
2067

2068 2069 2070 2071
	r32 = readl(ioc->ioc_regs.lpu_mbox_cmd);
	if ((r32 & 1) == 0)
		return BFA_FALSE;

J
Jing Huang 已提交
2072
	/*
2073 2074 2075 2076
	 * read the MBOX msg
	 */
	for (i = 0; i < (sizeof(union bfi_ioc_i2h_msg_u) / sizeof(u32));
	     i++) {
2077
		r32 = readl(ioc->ioc_regs.lpu_mbox +
2078
				   i * sizeof(u32));
2079
		msgp[i] = cpu_to_be32(r32);
2080 2081
	}

J
Jing Huang 已提交
2082
	/*
2083 2084
	 * turn off mailbox interrupt by clearing mailbox status
	 */
2085 2086
	writel(1, ioc->ioc_regs.lpu_mbox_cmd);
	readl(ioc->ioc_regs.lpu_mbox_cmd);
2087 2088

	return BFA_TRUE;
2089 2090 2091 2092 2093
}

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

K
Krishna Gudipati 已提交
2097
	msg = (union bfi_ioc_i2h_msg_u *) m;
2098 2099 2100 2101 2102 2103 2104 2105

	bfa_ioc_stats(ioc, ioc_isrs);

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

	case BFI_IOC_I2H_ENABLE_REPLY:
2106 2107 2108
		ioc->port_mode = ioc->port_mode_cfg =
				(enum bfa_mode_s)msg->fw_event.port_mode;
		ioc->ad_cap_bm = msg->fw_event.cap_bm;
K
Krishna Gudipati 已提交
2109
		bfa_fsm_send_event(iocpf, IOCPF_E_FWRSP_ENABLE);
2110 2111 2112
		break;

	case BFI_IOC_I2H_DISABLE_REPLY:
K
Krishna Gudipati 已提交
2113
		bfa_fsm_send_event(iocpf, IOCPF_E_FWRSP_DISABLE);
2114 2115 2116 2117 2118 2119
		break;

	case BFI_IOC_I2H_GETATTR_REPLY:
		bfa_ioc_getattr_reply(ioc);
		break;

2120 2121 2122 2123
	case BFI_IOC_I2H_ACQ_ADDR_REPLY:
		bfa_fsm_send_event(ioc, IOC_E_FWRSP_ACQ_ADDR);
		break;

2124 2125
	default:
		bfa_trc(ioc, msg->mh.msg_id);
2126
		WARN_ON(1);
2127 2128 2129
	}
}

J
Jing Huang 已提交
2130
/*
2131 2132 2133 2134 2135 2136 2137
 * 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 已提交
2138 2139 2140 2141 2142 2143 2144
	       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;
2145
	ioc->dbg_fwsave_once = BFA_TRUE;
K
Krishna Gudipati 已提交
2146
	ioc->iocpf.ioc	= ioc;
2147 2148

	bfa_ioc_mbox_attach(ioc);
2149
	INIT_LIST_HEAD(&ioc->notify_q);
2150

K
Krishna Gudipati 已提交
2151 2152
	bfa_fsm_set_state(ioc, bfa_ioc_sm_uninit);
	bfa_fsm_send_event(ioc, IOC_E_RESET);
2153 2154
}

J
Jing Huang 已提交
2155
/*
2156 2157 2158 2159 2160 2161 2162 2163
 * 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 已提交
2164
/*
2165 2166 2167 2168 2169 2170
 * 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,
2171
		enum bfi_pcifn_class clscode)
2172
{
2173
	ioc->clscode	= clscode;
K
Krishna Gudipati 已提交
2174
	ioc->pcidev	= *pcidev;
2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185

	/*
	 * Initialize IOC and device personality
	 */
	ioc->port0_mode = ioc->port1_mode = BFI_PORT_MODE_FC;
	ioc->asic_mode  = BFI_ASIC_MODE_FC;

	switch (pcidev->device_id) {
	case BFA_PCI_DEVICE_ID_FC_8G1P:
	case BFA_PCI_DEVICE_ID_FC_8G2P:
		ioc->asic_gen = BFI_ASIC_GEN_CB;
2186 2187 2188
		ioc->fcmode = BFA_TRUE;
		ioc->port_mode = ioc->port_mode_cfg = BFA_MODE_HBA;
		ioc->ad_cap_bm = BFA_CM_HBA;
2189 2190 2191 2192 2193 2194
		break;

	case BFA_PCI_DEVICE_ID_CT:
		ioc->asic_gen = BFI_ASIC_GEN_CT;
		ioc->port0_mode = ioc->port1_mode = BFI_PORT_MODE_ETH;
		ioc->asic_mode  = BFI_ASIC_MODE_ETH;
2195 2196
		ioc->port_mode = ioc->port_mode_cfg = BFA_MODE_CNA;
		ioc->ad_cap_bm = BFA_CM_CNA;
2197 2198 2199 2200
		break;

	case BFA_PCI_DEVICE_ID_CT_FC:
		ioc->asic_gen = BFI_ASIC_GEN_CT;
2201 2202 2203
		ioc->fcmode = BFA_TRUE;
		ioc->port_mode = ioc->port_mode_cfg = BFA_MODE_HBA;
		ioc->ad_cap_bm = BFA_CM_HBA;
2204 2205 2206 2207
		break;

	case BFA_PCI_DEVICE_ID_CT2:
		ioc->asic_gen = BFI_ASIC_GEN_CT2;
2208 2209
		if (clscode == BFI_PCIFN_CLASS_FC &&
		    pcidev->ssid == BFA_PCI_CT2_SSID_FC) {
2210
			ioc->asic_mode  = BFI_ASIC_MODE_FC16;
2211 2212 2213 2214
			ioc->fcmode = BFA_TRUE;
			ioc->port_mode = ioc->port_mode_cfg = BFA_MODE_HBA;
			ioc->ad_cap_bm = BFA_CM_HBA;
		} else {
2215
			ioc->port0_mode = ioc->port1_mode = BFI_PORT_MODE_ETH;
2216 2217 2218 2219 2220 2221 2222 2223 2224 2225
			ioc->asic_mode  = BFI_ASIC_MODE_ETH;
			if (pcidev->ssid == BFA_PCI_CT2_SSID_FCoE) {
				ioc->port_mode =
				ioc->port_mode_cfg = BFA_MODE_CNA;
				ioc->ad_cap_bm = BFA_CM_CNA;
			} else {
				ioc->port_mode =
				ioc->port_mode_cfg = BFA_MODE_NIC;
				ioc->ad_cap_bm = BFA_CM_NIC;
			}
2226 2227 2228 2229 2230 2231
		}
		break;

	default:
		WARN_ON(1);
	}
2232

J
Jing Huang 已提交
2233
	/*
2234 2235
	 * Set asic specific interfaces. See bfa_ioc_cb.c and bfa_ioc_ct.c
	 */
2236
	if (ioc->asic_gen == BFI_ASIC_GEN_CB)
2237
		bfa_ioc_set_cb_hwif(ioc);
2238 2239 2240 2241 2242 2243 2244
	else if (ioc->asic_gen == BFI_ASIC_GEN_CT)
		bfa_ioc_set_ct_hwif(ioc);
	else {
		WARN_ON(ioc->asic_gen != BFI_ASIC_GEN_CT2);
		bfa_ioc_set_ct2_hwif(ioc);
		bfa_ioc_ct2_poweron(ioc);
	}
2245

2246 2247 2248 2249
	bfa_ioc_map_port(ioc);
	bfa_ioc_reg_init(ioc);
}

J
Jing Huang 已提交
2250
/*
2251 2252 2253 2254 2255 2256
 * 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 已提交
2257
bfa_ioc_mem_claim(struct bfa_ioc_s *ioc,  u8 *dm_kva, u64 dm_pa)
2258
{
J
Jing Huang 已提交
2259
	/*
2260 2261 2262 2263
	 * dma memory for firmware attribute
	 */
	ioc->attr_dma.kva = dm_kva;
	ioc->attr_dma.pa = dm_pa;
K
Krishna Gudipati 已提交
2264
	ioc->attr = (struct bfi_ioc_attr_s *) dm_kva;
2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283
}

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 已提交
2284
/*
2285 2286 2287 2288 2289 2290
 * 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 已提交
2291
	ioc->dbg_fwsave	    = dbg_fwsave;
2292
	ioc->dbg_fwsave_len = (ioc->iocpf.auto_recover) ? BFA_DBG_FWTRC_LEN : 0;
2293 2294
}

J
Jing Huang 已提交
2295
/*
2296 2297 2298 2299 2300 2301 2302 2303
 * 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 已提交
2304 2305
	struct bfa_ioc_mbox_mod_s	*mod = &ioc->mbox_mod;
	int				mc;
2306 2307 2308 2309 2310

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

J
Jing Huang 已提交
2311
/*
2312 2313 2314 2315 2316 2317
 * 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 已提交
2318
	struct bfa_ioc_mbox_mod_s	*mod = &ioc->mbox_mod;
2319

K
Krishna Gudipati 已提交
2320 2321
	mod->mbhdlr[mc].cbfn	= cbfn;
	mod->mbhdlr[mc].cbarg	= cbarg;
2322 2323
}

J
Jing Huang 已提交
2324
/*
2325 2326 2327 2328 2329 2330 2331 2332 2333
 * 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 已提交
2334 2335
	struct bfa_ioc_mbox_mod_s	*mod = &ioc->mbox_mod;
	u32			stat;
2336

J
Jing Huang 已提交
2337
	/*
2338 2339 2340 2341 2342 2343 2344
	 * 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 已提交
2345
	/*
2346 2347
	 * If mailbox is busy, queue command for poll timer
	 */
2348
	stat = readl(ioc->ioc_regs.hfn_mbox_cmd);
2349 2350 2351 2352 2353
	if (stat) {
		list_add_tail(&cmd->qe, &mod->cmd_q);
		return;
	}

J
Jing Huang 已提交
2354
	/*
2355 2356 2357 2358 2359
	 * mailbox is free -- queue command to firmware
	 */
	bfa_ioc_mbox_send(ioc, cmd->msg, sizeof(cmd->msg));
}

J
Jing Huang 已提交
2360
/*
2361 2362 2363 2364 2365
 * Handle mailbox interrupts
 */
void
bfa_ioc_mbox_isr(struct bfa_ioc_s *ioc)
{
K
Krishna Gudipati 已提交
2366 2367 2368
	struct bfa_ioc_mbox_mod_s	*mod = &ioc->mbox_mod;
	struct bfi_mbmsg_s		m;
	int				mc;
2369

2370 2371 2372 2373 2374 2375 2376 2377 2378
	if (bfa_ioc_msgget(ioc, &m)) {
		/*
		 * Treat IOC message class as special.
		 */
		mc = m.mh.msg_class;
		if (mc == BFI_MC_IOC) {
			bfa_ioc_isr(ioc, &m);
			return;
		}
2379

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

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

2386
	bfa_ioc_lpu_read_stat(ioc);
2387

2388 2389 2390 2391
	/*
	 * Try to send pending mailbox commands
	 */
	bfa_ioc_mbox_poll(ioc);
2392 2393 2394 2395 2396
}

void
bfa_ioc_error_isr(struct bfa_ioc_s *ioc)
{
K
Krishna Gudipati 已提交
2397 2398
	bfa_ioc_stats(ioc, ioc_hbfails);
	ioc->stats.hb_count = ioc->hb_count;
2399 2400 2401
	bfa_fsm_send_event(ioc, IOC_E_HWERROR);
}

2402 2403 2404 2405 2406 2407
void
bfa_ioc_set_fcmode(struct bfa_ioc_s *ioc)
{
	ioc->fcmode  = BFA_TRUE;
}

J
Jing Huang 已提交
2408
/*
2409 2410 2411 2412 2413
 * return true if IOC is disabled
 */
bfa_boolean_t
bfa_ioc_is_disabled(struct bfa_ioc_s *ioc)
{
K
Krishna Gudipati 已提交
2414 2415
	return bfa_fsm_cmp_state(ioc, bfa_ioc_sm_disabling) ||
		bfa_fsm_cmp_state(ioc, bfa_ioc_sm_disabled);
2416 2417
}

2418 2419 2420 2421 2422 2423 2424 2425 2426
/*
 * Return TRUE if IOC is in acquiring address state
 */
bfa_boolean_t
bfa_ioc_is_acq_addr(struct bfa_ioc_s *ioc)
{
	return bfa_fsm_cmp_state(ioc, bfa_ioc_sm_acq_addr);
}

J
Jing Huang 已提交
2427
/*
2428 2429 2430 2431 2432
 * return true if IOC firmware is different.
 */
bfa_boolean_t
bfa_ioc_fw_mismatch(struct bfa_ioc_s *ioc)
{
K
Krishna Gudipati 已提交
2433 2434 2435
	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);
2436 2437 2438 2439 2440 2441 2442
}

#define bfa_ioc_state_disabled(__sm)		\
	(((__sm) == BFI_IOC_UNINIT) ||		\
	 ((__sm) == BFI_IOC_INITING) ||		\
	 ((__sm) == BFI_IOC_HWINIT) ||		\
	 ((__sm) == BFI_IOC_DISABLED) ||	\
2443
	 ((__sm) == BFI_IOC_FAIL) ||		\
2444 2445
	 ((__sm) == BFI_IOC_CFG_DISABLED))

J
Jing Huang 已提交
2446
/*
2447 2448 2449 2450 2451 2452
 * 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 已提交
2453
	u32	ioc_state;
2454 2455 2456 2457

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

2458
	ioc_state = readl(ioc->ioc_regs.ioc_fwstate);
2459 2460 2461
	if (!bfa_ioc_state_disabled(ioc_state))
		return BFA_FALSE;

K
Krishna Gudipati 已提交
2462
	if (ioc->pcidev.device_id != BFA_PCI_DEVICE_ID_FC_8G1P) {
2463
		ioc_state = readl(ioc->ioc_regs.alt_ioc_fwstate);
K
Krishna Gudipati 已提交
2464 2465 2466
		if (!bfa_ioc_state_disabled(ioc_state))
			return BFA_FALSE;
	}
2467 2468 2469 2470

	return BFA_TRUE;
}

2471
/*
2472 2473 2474 2475 2476 2477 2478 2479 2480
 * Reset IOC fwstate registers.
 */
void
bfa_ioc_reset_fwstate(struct bfa_ioc_s *ioc)
{
	writel(BFI_IOC_UNINIT, ioc->ioc_regs.ioc_fwstate);
	writel(BFI_IOC_UNINIT, ioc->ioc_regs.alt_ioc_fwstate);
}

2481 2482 2483 2484 2485
#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 已提交
2486
	struct bfi_ioc_attr_s	*ioc_attr;
2487 2488

	ioc_attr = ioc->attr;
2489 2490 2491 2492 2493

	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);
2494
	memcpy(&ad_attr->vpd, &ioc_attr->vpd,
2495 2496
		      sizeof(struct bfa_mfg_vpd_s));

2497 2498
	ad_attr->nports = bfa_ioc_get_nports(ioc);
	ad_attr->max_speed = bfa_ioc_speed_sup(ioc);
2499

2500 2501 2502
	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);
2503

2504 2505 2506
	ad_attr->card_type = ioc_attr->card_type;
	ad_attr->is_mezz = bfa_mfg_is_mezz(ioc_attr->card_type);

2507 2508 2509 2510 2511
	if (BFI_ADAPTER_IS_SPECIAL(ioc_attr->adapter_prop))
		ad_attr->prototype = 1;
	else
		ad_attr->prototype = 0;

2512
	ad_attr->pwwn = ioc->attr->pwwn;
K
Krishna Gudipati 已提交
2513
	ad_attr->mac  = bfa_ioc_get_mac(ioc);
2514 2515 2516 2517 2518

	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;
2519 2520

	bfa_ioc_get_pci_chip_rev(ioc, ad_attr->hw_ver);
2521

2522 2523 2524
	ad_attr->cna_capable = bfa_ioc_is_cna(ioc);
	ad_attr->trunk_capable = (ad_attr->nports > 1) &&
				  !bfa_ioc_is_cna(ioc) && !ad_attr->is_mezz;
2525 2526
}

2527 2528 2529
enum bfa_ioc_type_e
bfa_ioc_get_type(struct bfa_ioc_s *ioc)
{
2530
	if (ioc->clscode == BFI_PCIFN_CLASS_ETH)
2531
		return BFA_IOC_TYPE_LL;
2532 2533 2534

	WARN_ON(ioc->clscode != BFI_PCIFN_CLASS_FC);

K
Krishna Gudipati 已提交
2535
	return (ioc->attr->port_mode == BFI_PORT_MODE_FC)
2536
		? BFA_IOC_TYPE_FC : BFA_IOC_TYPE_FCoE;
2537 2538
}

2539 2540 2541
void
bfa_ioc_get_adapter_serial_num(struct bfa_ioc_s *ioc, char *serial_num)
{
2542 2543
	memset((void *)serial_num, 0, BFA_ADAPTER_SERIAL_NUM_LEN);
	memcpy((void *)serial_num,
2544 2545 2546 2547 2548 2549 2550
			(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)
{
2551 2552
	memset((void *)fw_ver, 0, BFA_VERSION_LEN);
	memcpy(fw_ver, ioc->attr->fw_version, BFA_VERSION_LEN);
2553 2554 2555 2556 2557
}

void
bfa_ioc_get_pci_chip_rev(struct bfa_ioc_s *ioc, char *chip_rev)
{
2558
	WARN_ON(!chip_rev);
2559

2560
	memset((void *)chip_rev, 0, BFA_IOC_CHIP_REV_LEN);
2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572

	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)
{
2573 2574
	memset((void *)optrom_ver, 0, BFA_VERSION_LEN);
	memcpy(optrom_ver, ioc->attr->optrom_version,
K
Krishna Gudipati 已提交
2575
		      BFA_VERSION_LEN);
2576 2577 2578 2579 2580
}

void
bfa_ioc_get_adapter_manufacturer(struct bfa_ioc_s *ioc, char *manufacturer)
{
2581 2582
	memset((void *)manufacturer, 0, BFA_ADAPTER_MFG_NAME_LEN);
	memcpy(manufacturer, BFA_MFG_NAME, BFA_ADAPTER_MFG_NAME_LEN);
2583 2584 2585 2586 2587
}

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

2590
	WARN_ON(!model);
2591
	memset((void *)model, 0, BFA_ADAPTER_MODEL_NAME_LEN);
2592 2593 2594

	ioc_attr = ioc->attr;

J
Jing Huang 已提交
2595
	/*
2596 2597
	 * model name
	 */
2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624
	if (ioc->asic_gen == BFI_ASIC_GEN_CT2) {
		int np = bfa_ioc_get_nports(ioc);
		char c;
		switch (ioc_attr->card_type) {
		case BFA_MFG_TYPE_PROWLER_F:
		case BFA_MFG_TYPE_PROWLER_N:
		case BFA_MFG_TYPE_PROWLER_C:
			snprintf(model, BFA_ADAPTER_MODEL_NAME_LEN,
				"%s-%u-%u",
				BFA_MFG_NAME, ioc_attr->card_type, np);
			break;
		case BFA_MFG_TYPE_PROWLER_D:
			if (ioc_attr->ic == BFA_MFG_IC_FC)
				c = 'F';
			else
				c = 'P';

			snprintf(model, BFA_ADAPTER_MODEL_NAME_LEN,
				"%s-%u-%u%c",
				BFA_MFG_NAME, ioc_attr->card_type, np, c);
			break;
		default:
			break;
		}
	} else
		snprintf(model, BFA_ADAPTER_MODEL_NAME_LEN, "%s-%u",
			BFA_MFG_NAME, ioc_attr->card_type);
2625 2626 2627 2628 2629
}

enum bfa_ioc_state
bfa_ioc_get_state(struct bfa_ioc_s *ioc)
{
K
Krishna Gudipati 已提交
2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664
	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;
2665 2666
}

2667 2668 2669
void
bfa_ioc_get_attr(struct bfa_ioc_s *ioc, struct bfa_ioc_attr_s *ioc_attr)
{
2670
	memset((void *)ioc_attr, 0, sizeof(struct bfa_ioc_attr_s));
2671

2672
	ioc_attr->state = bfa_ioc_get_state(ioc);
2673
	ioc_attr->port_id = ioc->port_id;
2674 2675 2676
	ioc_attr->port_mode = ioc->port_mode;
	ioc_attr->port_mode_cfg = ioc->port_mode_cfg;
	ioc_attr->cap_bm = ioc->ad_cap_bm;
2677

2678
	ioc_attr->ioc_type = bfa_ioc_get_type(ioc);
2679 2680 2681 2682 2683

	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;
2684
	bfa_ioc_get_pci_chip_rev(ioc, ioc_attr->pci_attr.chip_rev);
2685 2686 2687 2688 2689
}

mac_t
bfa_ioc_get_mac(struct bfa_ioc_s *ioc)
{
J
Jing Huang 已提交
2690
	/*
K
Krishna Gudipati 已提交
2691
	 * Check the IOC type and return the appropriate MAC
J
Jing Huang 已提交
2692 2693
	 */
	if (bfa_ioc_get_type(ioc) == BFA_IOC_TYPE_FCoE)
K
Krishna Gudipati 已提交
2694
		return ioc->attr->fcoe_mac;
J
Jing Huang 已提交
2695 2696 2697 2698 2699 2700 2701
	else
		return ioc->attr->mac;
}

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

K
Krishna Gudipati 已提交
2704 2705 2706 2707 2708 2709
	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));
2710

K
Krishna Gudipati 已提交
2711
	return m;
2712 2713 2714 2715 2716
}

bfa_boolean_t
bfa_ioc_get_fcmode(struct bfa_ioc_s *ioc)
{
2717
	return ioc->fcmode || bfa_asic_id_cb(ioc->pcidev.device_id);
2718 2719
}

J
Jing Huang 已提交
2720
/*
2721 2722 2723 2724 2725
 * 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 已提交
2726
	int	tlen;
2727 2728 2729 2730 2731 2732 2733 2734

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

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

2735
	memcpy(trcdata, ioc->dbg_fwsave, tlen);
2736 2737 2738 2739
	*trclen = tlen;
	return BFA_STATUS_OK;
}

2740

J
Jing Huang 已提交
2741
/*
2742 2743 2744 2745 2746
 * 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 已提交
2747 2748 2749
	u32 loff = BFA_DBG_FWTRC_OFF(bfa_ioc_portid(ioc));
	int tlen;
	bfa_status_t status;
2750 2751 2752 2753 2754 2755 2756

	bfa_trc(ioc, *trclen);

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

K
Krishna Gudipati 已提交
2757 2758 2759 2760
	status = bfa_ioc_smem_read(ioc, trcdata, loff, tlen);
	*trclen = tlen;
	return status;
}
2761

K
Krishna Gudipati 已提交
2762 2763 2764 2765 2766
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;
2767

K
Krishna Gudipati 已提交
2768 2769
	bfi_h2i_set(req->mh, BFI_MC_IOC, BFI_IOC_H2I_DBG_SYNC,
		    bfa_ioc_portid(ioc));
2770
	req->clscode = cpu_to_be16(ioc->clscode);
K
Krishna Gudipati 已提交
2771 2772 2773 2774 2775 2776 2777 2778 2779 2780
	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 已提交
2781
	/*
K
Krishna Gudipati 已提交
2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795
	 * 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 已提交
2796
/*
K
Krishna Gudipati 已提交
2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810
 * 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;
2811
	}
2812

K
Krishna Gudipati 已提交
2813 2814 2815
	loff = *offset;
	dlen = *buflen;

J
Jing Huang 已提交
2816
	/*
K
Krishna Gudipati 已提交
2817 2818
	 * First smem read, sync smem before proceeding
	 * No need to sync before reading every chunk.
2819
	 */
K
Krishna Gudipati 已提交
2820 2821
	if (loff == 0)
		bfa_ioc_fwsync(ioc);
2822

K
Krishna Gudipati 已提交
2823 2824
	if ((loff + dlen) >= smem_len)
		dlen = smem_len - loff;
2825

K
Krishna Gudipati 已提交
2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842
	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 已提交
2843
/*
K
Krishna Gudipati 已提交
2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885
 * 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;
2886 2887
}

J
Jing Huang 已提交
2888
/*
2889 2890 2891
 * Save firmware trace if configured.
 */
static void
2892
bfa_ioc_debug_save_ftrc(struct bfa_ioc_s *ioc)
2893
{
K
Krishna Gudipati 已提交
2894
	int		tlen;
2895

2896 2897 2898 2899 2900 2901
	if (ioc->dbg_fwsave_once) {
		ioc->dbg_fwsave_once = BFA_FALSE;
		if (ioc->dbg_fwsave_len) {
			tlen = ioc->dbg_fwsave_len;
			bfa_ioc_debug_fwtrc(ioc, ioc->dbg_fwsave, &tlen);
		}
2902 2903 2904
	}
}

J
Jing Huang 已提交
2905
/*
2906 2907 2908 2909 2910 2911
 * Firmware failure detected. Start recovery actions.
 */
static void
bfa_ioc_recover(struct bfa_ioc_s *ioc)
{
	bfa_ioc_stats(ioc, ioc_hbfails);
K
Krishna Gudipati 已提交
2912
	ioc->stats.hb_count = ioc->hb_count;
2913 2914 2915 2916
	bfa_fsm_send_event(ioc, IOC_E_HBFAIL);
}

static void
J
Jing Huang 已提交
2917
bfa_ioc_check_attr_wwns(struct bfa_ioc_s *ioc)
2918
{
J
Jing Huang 已提交
2919 2920
	if (bfa_ioc_get_type(ioc) == BFA_IOC_TYPE_LL)
		return;
K
Krishna Gudipati 已提交
2921 2922
}

J
Jing Huang 已提交
2923
/*
2924
 *  BFA IOC PF private functions
K
Krishna Gudipati 已提交
2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942
 */
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);
}

2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970
static void
bfa_ioc_poll_fwinit(struct bfa_ioc_s *ioc)
{
	u32 fwstate = readl(ioc->ioc_regs.ioc_fwstate);

	bfa_trc(ioc, fwstate);

	if (fwstate == BFI_IOC_DISABLED) {
		bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_FWREADY);
		return;
	}

	if (ioc->iocpf.poll_time >= BFA_IOC_TOV)
		bfa_iocpf_timeout(ioc);
	else {
		ioc->iocpf.poll_time += BFA_IOC_POLL_TOV;
		bfa_iocpf_poll_timer_start(ioc);
	}
}

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

	bfa_ioc_poll_fwinit(ioc);
}

J
Jing Huang 已提交
2971
/*
K
Krishna Gudipati 已提交
2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009
 *  bfa timer function
 */
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 已提交
3010
/*
K
Krishna Gudipati 已提交
3011 3012 3013 3014 3015 3016 3017
 * 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)
{

3018 3019
	WARN_ON(timercb == NULL);
	WARN_ON(bfa_q_is_on_q(&mod->timer_q, timer));
K
Krishna Gudipati 已提交
3020 3021 3022 3023 3024 3025 3026 3027

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

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

J
Jing Huang 已提交
3028
/*
K
Krishna Gudipati 已提交
3029 3030 3031 3032 3033
 * Should be called with lock protection
 */
void
bfa_timer_stop(struct bfa_timer_s *timer)
{
3034
	WARN_ON(list_empty(&timer->qe));
K
Krishna Gudipati 已提交
3035 3036 3037

	list_del(&timer->qe);
}
3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406

/*
 *	ASIC block related
 */
static void
bfa_ablk_config_swap(struct bfa_ablk_cfg_s *cfg)
{
	struct bfa_ablk_cfg_inst_s *cfg_inst;
	int i, j;
	u16	be16;
	u32	be32;

	for (i = 0; i < BFA_ABLK_MAX; i++) {
		cfg_inst = &cfg->inst[i];
		for (j = 0; j < BFA_ABLK_MAX_PFS; j++) {
			be16 = cfg_inst->pf_cfg[j].pers;
			cfg_inst->pf_cfg[j].pers = be16_to_cpu(be16);
			be16 = cfg_inst->pf_cfg[j].num_qpairs;
			cfg_inst->pf_cfg[j].num_qpairs = be16_to_cpu(be16);
			be16 = cfg_inst->pf_cfg[j].num_vectors;
			cfg_inst->pf_cfg[j].num_vectors = be16_to_cpu(be16);
			be32 = cfg_inst->pf_cfg[j].bw;
			cfg_inst->pf_cfg[j].bw = be16_to_cpu(be32);
		}
	}
}

static void
bfa_ablk_isr(void *cbarg, struct bfi_mbmsg_s *msg)
{
	struct bfa_ablk_s *ablk = (struct bfa_ablk_s *)cbarg;
	struct bfi_ablk_i2h_rsp_s *rsp = (struct bfi_ablk_i2h_rsp_s *)msg;
	bfa_ablk_cbfn_t cbfn;

	WARN_ON(msg->mh.msg_class != BFI_MC_ABLK);
	bfa_trc(ablk->ioc, msg->mh.msg_id);

	switch (msg->mh.msg_id) {
	case BFI_ABLK_I2H_QUERY:
		if (rsp->status == BFA_STATUS_OK) {
			memcpy(ablk->cfg, ablk->dma_addr.kva,
				sizeof(struct bfa_ablk_cfg_s));
			bfa_ablk_config_swap(ablk->cfg);
			ablk->cfg = NULL;
		}
		break;

	case BFI_ABLK_I2H_ADPT_CONFIG:
	case BFI_ABLK_I2H_PORT_CONFIG:
		/* update config port mode */
		ablk->ioc->port_mode_cfg = rsp->port_mode;

	case BFI_ABLK_I2H_PF_DELETE:
	case BFI_ABLK_I2H_PF_UPDATE:
	case BFI_ABLK_I2H_OPTROM_ENABLE:
	case BFI_ABLK_I2H_OPTROM_DISABLE:
		/* No-op */
		break;

	case BFI_ABLK_I2H_PF_CREATE:
		*(ablk->pcifn) = rsp->pcifn;
		ablk->pcifn = NULL;
		break;

	default:
		WARN_ON(1);
	}

	ablk->busy = BFA_FALSE;
	if (ablk->cbfn) {
		cbfn = ablk->cbfn;
		ablk->cbfn = NULL;
		cbfn(ablk->cbarg, rsp->status);
	}
}

static void
bfa_ablk_notify(void *cbarg, enum bfa_ioc_event_e event)
{
	struct bfa_ablk_s *ablk = (struct bfa_ablk_s *)cbarg;

	bfa_trc(ablk->ioc, event);

	switch (event) {
	case BFA_IOC_E_ENABLED:
		WARN_ON(ablk->busy != BFA_FALSE);
		break;

	case BFA_IOC_E_DISABLED:
	case BFA_IOC_E_FAILED:
		/* Fail any pending requests */
		ablk->pcifn = NULL;
		if (ablk->busy) {
			if (ablk->cbfn)
				ablk->cbfn(ablk->cbarg, BFA_STATUS_FAILED);
			ablk->cbfn = NULL;
			ablk->busy = BFA_FALSE;
		}
		break;

	default:
		WARN_ON(1);
		break;
	}
}

u32
bfa_ablk_meminfo(void)
{
	return BFA_ROUNDUP(sizeof(struct bfa_ablk_cfg_s), BFA_DMA_ALIGN_SZ);
}

void
bfa_ablk_memclaim(struct bfa_ablk_s *ablk, u8 *dma_kva, u64 dma_pa)
{
	ablk->dma_addr.kva = dma_kva;
	ablk->dma_addr.pa  = dma_pa;
}

void
bfa_ablk_attach(struct bfa_ablk_s *ablk, struct bfa_ioc_s *ioc)
{
	ablk->ioc = ioc;

	bfa_ioc_mbox_regisr(ablk->ioc, BFI_MC_ABLK, bfa_ablk_isr, ablk);
	bfa_ioc_notify_init(&ablk->ioc_notify, bfa_ablk_notify, ablk);
	list_add_tail(&ablk->ioc_notify.qe, &ablk->ioc->notify_q);
}

bfa_status_t
bfa_ablk_query(struct bfa_ablk_s *ablk, struct bfa_ablk_cfg_s *ablk_cfg,
		bfa_ablk_cbfn_t cbfn, void *cbarg)
{
	struct bfi_ablk_h2i_query_s *m;

	WARN_ON(!ablk_cfg);

	if (!bfa_ioc_is_operational(ablk->ioc)) {
		bfa_trc(ablk->ioc, BFA_STATUS_IOC_FAILURE);
		return BFA_STATUS_IOC_FAILURE;
	}

	if (ablk->busy) {
		bfa_trc(ablk->ioc, BFA_STATUS_DEVBUSY);
		return  BFA_STATUS_DEVBUSY;
	}

	ablk->cfg = ablk_cfg;
	ablk->cbfn  = cbfn;
	ablk->cbarg = cbarg;
	ablk->busy  = BFA_TRUE;

	m = (struct bfi_ablk_h2i_query_s *)ablk->mb.msg;
	bfi_h2i_set(m->mh, BFI_MC_ABLK, BFI_ABLK_H2I_QUERY,
		    bfa_ioc_portid(ablk->ioc));
	bfa_dma_be_addr_set(m->addr, ablk->dma_addr.pa);
	bfa_ioc_mbox_queue(ablk->ioc, &ablk->mb);

	return BFA_STATUS_OK;
}

bfa_status_t
bfa_ablk_pf_create(struct bfa_ablk_s *ablk, u16 *pcifn,
		u8 port, enum bfi_pcifn_class personality, int bw,
		bfa_ablk_cbfn_t cbfn, void *cbarg)
{
	struct bfi_ablk_h2i_pf_req_s *m;

	if (!bfa_ioc_is_operational(ablk->ioc)) {
		bfa_trc(ablk->ioc, BFA_STATUS_IOC_FAILURE);
		return BFA_STATUS_IOC_FAILURE;
	}

	if (ablk->busy) {
		bfa_trc(ablk->ioc, BFA_STATUS_DEVBUSY);
		return  BFA_STATUS_DEVBUSY;
	}

	ablk->pcifn = pcifn;
	ablk->cbfn = cbfn;
	ablk->cbarg = cbarg;
	ablk->busy  = BFA_TRUE;

	m = (struct bfi_ablk_h2i_pf_req_s *)ablk->mb.msg;
	bfi_h2i_set(m->mh, BFI_MC_ABLK, BFI_ABLK_H2I_PF_CREATE,
		    bfa_ioc_portid(ablk->ioc));
	m->pers = cpu_to_be16((u16)personality);
	m->bw = cpu_to_be32(bw);
	m->port = port;
	bfa_ioc_mbox_queue(ablk->ioc, &ablk->mb);

	return BFA_STATUS_OK;
}

bfa_status_t
bfa_ablk_pf_delete(struct bfa_ablk_s *ablk, int pcifn,
		bfa_ablk_cbfn_t cbfn, void *cbarg)
{
	struct bfi_ablk_h2i_pf_req_s *m;

	if (!bfa_ioc_is_operational(ablk->ioc)) {
		bfa_trc(ablk->ioc, BFA_STATUS_IOC_FAILURE);
		return BFA_STATUS_IOC_FAILURE;
	}

	if (ablk->busy) {
		bfa_trc(ablk->ioc, BFA_STATUS_DEVBUSY);
		return  BFA_STATUS_DEVBUSY;
	}

	ablk->cbfn  = cbfn;
	ablk->cbarg = cbarg;
	ablk->busy  = BFA_TRUE;

	m = (struct bfi_ablk_h2i_pf_req_s *)ablk->mb.msg;
	bfi_h2i_set(m->mh, BFI_MC_ABLK, BFI_ABLK_H2I_PF_DELETE,
		    bfa_ioc_portid(ablk->ioc));
	m->pcifn = (u8)pcifn;
	bfa_ioc_mbox_queue(ablk->ioc, &ablk->mb);

	return BFA_STATUS_OK;
}

bfa_status_t
bfa_ablk_adapter_config(struct bfa_ablk_s *ablk, enum bfa_mode_s mode,
		int max_pf, int max_vf, bfa_ablk_cbfn_t cbfn, void *cbarg)
{
	struct bfi_ablk_h2i_cfg_req_s *m;

	if (!bfa_ioc_is_operational(ablk->ioc)) {
		bfa_trc(ablk->ioc, BFA_STATUS_IOC_FAILURE);
		return BFA_STATUS_IOC_FAILURE;
	}

	if (ablk->busy) {
		bfa_trc(ablk->ioc, BFA_STATUS_DEVBUSY);
		return  BFA_STATUS_DEVBUSY;
	}

	ablk->cbfn  = cbfn;
	ablk->cbarg = cbarg;
	ablk->busy  = BFA_TRUE;

	m = (struct bfi_ablk_h2i_cfg_req_s *)ablk->mb.msg;
	bfi_h2i_set(m->mh, BFI_MC_ABLK, BFI_ABLK_H2I_ADPT_CONFIG,
		    bfa_ioc_portid(ablk->ioc));
	m->mode = (u8)mode;
	m->max_pf = (u8)max_pf;
	m->max_vf = (u8)max_vf;
	bfa_ioc_mbox_queue(ablk->ioc, &ablk->mb);

	return BFA_STATUS_OK;
}

bfa_status_t
bfa_ablk_port_config(struct bfa_ablk_s *ablk, int port, enum bfa_mode_s mode,
		int max_pf, int max_vf, bfa_ablk_cbfn_t cbfn, void *cbarg)
{
	struct bfi_ablk_h2i_cfg_req_s *m;

	if (!bfa_ioc_is_operational(ablk->ioc)) {
		bfa_trc(ablk->ioc, BFA_STATUS_IOC_FAILURE);
		return BFA_STATUS_IOC_FAILURE;
	}

	if (ablk->busy) {
		bfa_trc(ablk->ioc, BFA_STATUS_DEVBUSY);
		return  BFA_STATUS_DEVBUSY;
	}

	ablk->cbfn  = cbfn;
	ablk->cbarg = cbarg;
	ablk->busy  = BFA_TRUE;

	m = (struct bfi_ablk_h2i_cfg_req_s *)ablk->mb.msg;
	bfi_h2i_set(m->mh, BFI_MC_ABLK, BFI_ABLK_H2I_PORT_CONFIG,
		bfa_ioc_portid(ablk->ioc));
	m->port = (u8)port;
	m->mode = (u8)mode;
	m->max_pf = (u8)max_pf;
	m->max_vf = (u8)max_vf;
	bfa_ioc_mbox_queue(ablk->ioc, &ablk->mb);

	return BFA_STATUS_OK;
}

bfa_status_t
bfa_ablk_pf_update(struct bfa_ablk_s *ablk, int pcifn, int bw,
		bfa_ablk_cbfn_t cbfn, void *cbarg)
{
	struct bfi_ablk_h2i_pf_req_s *m;

	if (!bfa_ioc_is_operational(ablk->ioc)) {
		bfa_trc(ablk->ioc, BFA_STATUS_IOC_FAILURE);
		return BFA_STATUS_IOC_FAILURE;
	}

	if (ablk->busy) {
		bfa_trc(ablk->ioc, BFA_STATUS_DEVBUSY);
		return  BFA_STATUS_DEVBUSY;
	}

	ablk->cbfn  = cbfn;
	ablk->cbarg = cbarg;
	ablk->busy  = BFA_TRUE;

	m = (struct bfi_ablk_h2i_pf_req_s *)ablk->mb.msg;
	bfi_h2i_set(m->mh, BFI_MC_ABLK, BFI_ABLK_H2I_PF_UPDATE,
		bfa_ioc_portid(ablk->ioc));
	m->pcifn = (u8)pcifn;
	m->bw = cpu_to_be32(bw);
	bfa_ioc_mbox_queue(ablk->ioc, &ablk->mb);

	return BFA_STATUS_OK;
}

bfa_status_t
bfa_ablk_optrom_en(struct bfa_ablk_s *ablk, bfa_ablk_cbfn_t cbfn, void *cbarg)
{
	struct bfi_ablk_h2i_optrom_s *m;

	if (!bfa_ioc_is_operational(ablk->ioc)) {
		bfa_trc(ablk->ioc, BFA_STATUS_IOC_FAILURE);
		return BFA_STATUS_IOC_FAILURE;
	}

	if (ablk->busy) {
		bfa_trc(ablk->ioc, BFA_STATUS_DEVBUSY);
		return  BFA_STATUS_DEVBUSY;
	}

	ablk->cbfn  = cbfn;
	ablk->cbarg = cbarg;
	ablk->busy  = BFA_TRUE;

	m = (struct bfi_ablk_h2i_optrom_s *)ablk->mb.msg;
	bfi_h2i_set(m->mh, BFI_MC_ABLK, BFI_ABLK_H2I_OPTROM_ENABLE,
		bfa_ioc_portid(ablk->ioc));
	bfa_ioc_mbox_queue(ablk->ioc, &ablk->mb);

	return BFA_STATUS_OK;
}

bfa_status_t
bfa_ablk_optrom_dis(struct bfa_ablk_s *ablk, bfa_ablk_cbfn_t cbfn, void *cbarg)
{
	struct bfi_ablk_h2i_optrom_s *m;

	if (!bfa_ioc_is_operational(ablk->ioc)) {
		bfa_trc(ablk->ioc, BFA_STATUS_IOC_FAILURE);
		return BFA_STATUS_IOC_FAILURE;
	}

	if (ablk->busy) {
		bfa_trc(ablk->ioc, BFA_STATUS_DEVBUSY);
		return  BFA_STATUS_DEVBUSY;
	}

	ablk->cbfn  = cbfn;
	ablk->cbarg = cbarg;
	ablk->busy  = BFA_TRUE;

	m = (struct bfi_ablk_h2i_optrom_s *)ablk->mb.msg;
	bfi_h2i_set(m->mh, BFI_MC_ABLK, BFI_ABLK_H2I_OPTROM_DISABLE,
		bfa_ioc_portid(ablk->ioc));
	bfa_ioc_mbox_queue(ablk->ioc, &ablk->mb);

	return BFA_STATUS_OK;
}