bfa_ioc.c 77.2 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0-only
2
/*
3
 * Linux network driver for QLogic BR-series Converged Network Adapter.
4 5
 */
/*
6 7
 * Copyright (c) 2005-2014 Brocade Communications Systems, Inc.
 * Copyright (c) 2014-2015 QLogic Corporation
8
 * All rights reserved
9
 * www.qlogic.com
10 11 12
 */

#include "bfa_ioc.h"
13
#include "bfi_reg.h"
14 15
#include "bfa_defs.h"

16
/* IOC local definitions */
17

18
/* Asic specific macros : see bfa_hw_cb.c and bfa_hw_ct.c for details. */
19 20 21 22 23 24 25

#define bfa_ioc_firmware_lock(__ioc)			\
			((__ioc)->ioc_hwif->ioc_firmware_lock(__ioc))
#define bfa_ioc_firmware_unlock(__ioc)			\
			((__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))
R
Rasesh Mody 已提交
26 27
#define bfa_ioc_notify_fail(__ioc)			\
			((__ioc)->ioc_hwif->ioc_notify_fail(__ioc))
28 29
#define bfa_ioc_sync_start(__ioc)               \
			((__ioc)->ioc_hwif->ioc_sync_start(__ioc))
R
Rasesh Mody 已提交
30 31 32 33 34 35 36 37
#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))
R
Rasesh Mody 已提交
38 39 40 41 42 43
#define bfa_ioc_set_cur_ioc_fwstate(__ioc, __fwstate)		\
			((__ioc)->ioc_hwif->ioc_set_fwstate(__ioc, __fwstate))
#define bfa_ioc_get_cur_ioc_fwstate(__ioc)		\
			((__ioc)->ioc_hwif->ioc_get_fwstate(__ioc))
#define bfa_ioc_set_alt_ioc_fwstate(__ioc, __fwstate)		\
		((__ioc)->ioc_hwif->ioc_set_alt_fwstate(__ioc, __fwstate))
44

R
Rasesh Mody 已提交
45
static bool bfa_nw_auto_recover = true;
46 47 48 49

/*
 * forward declarations
 */
R
Rasesh Mody 已提交
50
static void bfa_ioc_hw_sem_init(struct bfa_ioc *ioc);
51 52 53
static void bfa_ioc_hw_sem_get(struct bfa_ioc *ioc);
static void bfa_ioc_hw_sem_get_cancel(struct bfa_ioc *ioc);
static void bfa_ioc_hwinit(struct bfa_ioc *ioc, bool force);
54
static void bfa_ioc_poll_fwinit(struct bfa_ioc *ioc);
55 56 57 58 59 60 61
static void bfa_ioc_send_enable(struct bfa_ioc *ioc);
static void bfa_ioc_send_disable(struct bfa_ioc *ioc);
static void bfa_ioc_send_getattr(struct bfa_ioc *ioc);
static void bfa_ioc_hb_monitor(struct bfa_ioc *ioc);
static void bfa_ioc_hb_stop(struct bfa_ioc *ioc);
static void bfa_ioc_reset(struct bfa_ioc *ioc, bool force);
static void bfa_ioc_mbox_poll(struct bfa_ioc *ioc);
R
Rasesh Mody 已提交
62
static void bfa_ioc_mbox_flush(struct bfa_ioc *ioc);
63
static void bfa_ioc_recover(struct bfa_ioc *ioc);
64
static void bfa_ioc_event_notify(struct bfa_ioc *, enum bfa_ioc_event);
65 66
static void bfa_ioc_disable_comp(struct bfa_ioc *ioc);
static void bfa_ioc_lpu_stop(struct bfa_ioc *ioc);
K
Krishna Gudipati 已提交
67
static void bfa_nw_ioc_debug_save_ftrc(struct bfa_ioc *ioc);
R
Rasesh Mody 已提交
68 69 70 71
static void bfa_ioc_fail_notify(struct bfa_ioc *ioc);
static void bfa_ioc_pf_enabled(struct bfa_ioc *ioc);
static void bfa_ioc_pf_disabled(struct bfa_ioc *ioc);
static void bfa_ioc_pf_failed(struct bfa_ioc *ioc);
72
static void bfa_ioc_pf_hwfailed(struct bfa_ioc *ioc);
R
Rasesh Mody 已提交
73
static void bfa_ioc_pf_fwmismatch(struct bfa_ioc *ioc);
R
Rasesh Mody 已提交
74 75
static enum bfa_status bfa_ioc_boot(struct bfa_ioc *ioc,
			enum bfi_fwboot_type boot_type, u32 boot_param);
76 77 78 79 80 81 82 83 84 85 86 87 88
static u32 bfa_ioc_smem_pgnum(struct bfa_ioc *ioc, u32 fmaddr);
static void bfa_ioc_get_adapter_serial_num(struct bfa_ioc *ioc,
						char *serial_num);
static void bfa_ioc_get_adapter_fw_ver(struct bfa_ioc *ioc,
						char *fw_ver);
static void bfa_ioc_get_pci_chip_rev(struct bfa_ioc *ioc,
						char *chip_rev);
static void bfa_ioc_get_adapter_optrom_ver(struct bfa_ioc *ioc,
						char *optrom_ver);
static void bfa_ioc_get_adapter_manufacturer(struct bfa_ioc *ioc,
						char *manufacturer);
static void bfa_ioc_get_adapter_model(struct bfa_ioc *ioc, char *model);
static u64 bfa_ioc_get_pwwn(struct bfa_ioc *ioc);
89

90
/* IOC state machine definitions/declarations */
91
enum ioc_event {
R
Rasesh Mody 已提交
92 93 94 95 96 97 98
	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		*/
99 100 101 102 103
	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			*/
	IOC_E_HWFAILED		= 12,	/*!< PCI mapping failure notice	*/
104 105
};

R
Rasesh Mody 已提交
106
bfa_fsm_state_decl(bfa_ioc, uninit, struct bfa_ioc, enum ioc_event);
107 108 109 110
bfa_fsm_state_decl(bfa_ioc, reset, struct bfa_ioc, enum ioc_event);
bfa_fsm_state_decl(bfa_ioc, enabling, struct bfa_ioc, enum ioc_event);
bfa_fsm_state_decl(bfa_ioc, getattr, struct bfa_ioc, enum ioc_event);
bfa_fsm_state_decl(bfa_ioc, op, struct bfa_ioc, enum ioc_event);
R
Rasesh Mody 已提交
111 112
bfa_fsm_state_decl(bfa_ioc, fail_retry, struct bfa_ioc, enum ioc_event);
bfa_fsm_state_decl(bfa_ioc, fail, struct bfa_ioc, enum ioc_event);
113 114
bfa_fsm_state_decl(bfa_ioc, disabling, struct bfa_ioc, enum ioc_event);
bfa_fsm_state_decl(bfa_ioc, disabled, struct bfa_ioc, enum ioc_event);
115
bfa_fsm_state_decl(bfa_ioc, hwfail, struct bfa_ioc, enum ioc_event);
116 117

static struct bfa_sm_table ioc_sm_table[] = {
R
Rasesh Mody 已提交
118
	{BFA_SM(bfa_ioc_sm_uninit), BFA_IOC_UNINIT},
119
	{BFA_SM(bfa_ioc_sm_reset), BFA_IOC_RESET},
R
Rasesh Mody 已提交
120
	{BFA_SM(bfa_ioc_sm_enabling), BFA_IOC_ENABLING},
121 122
	{BFA_SM(bfa_ioc_sm_getattr), BFA_IOC_GETATTR},
	{BFA_SM(bfa_ioc_sm_op), BFA_IOC_OPERATIONAL},
R
Rasesh Mody 已提交
123 124
	{BFA_SM(bfa_ioc_sm_fail_retry), BFA_IOC_INITFAIL},
	{BFA_SM(bfa_ioc_sm_fail), BFA_IOC_FAIL},
125 126
	{BFA_SM(bfa_ioc_sm_disabling), BFA_IOC_DISABLING},
	{BFA_SM(bfa_ioc_sm_disabled), BFA_IOC_DISABLED},
127
	{BFA_SM(bfa_ioc_sm_hwfail), BFA_IOC_HWFAIL},
128 129
};

R
Rasesh Mody 已提交
130 131 132 133 134 135 136 137 138 139
/*
 * Forward declareations for iocpf state machine
 */
static void bfa_iocpf_enable(struct bfa_ioc *ioc);
static void bfa_iocpf_disable(struct bfa_ioc *ioc);
static void bfa_iocpf_fail(struct bfa_ioc *ioc);
static void bfa_iocpf_initfail(struct bfa_ioc *ioc);
static void bfa_iocpf_getattrfail(struct bfa_ioc *ioc);
static void bfa_iocpf_stop(struct bfa_ioc *ioc);

140
/* IOCPF state machine events */
R
Rasesh Mody 已提交
141 142 143 144
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	*/
R
Rasesh Mody 已提交
145
	IOCPF_E_FWREADY		= 4,	/*!< f/w initialization done	*/
R
Rasesh Mody 已提交
146 147 148 149 150 151 152
	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	*/
153
	IOCPF_E_SEM_ERROR	= 12,   /*!< h/w sem mapping error	*/
R
Rasesh Mody 已提交
154 155
};

156
/* IOCPF states */
R
Rasesh Mody 已提交
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202
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, enum iocpf_event);
bfa_fsm_state_decl(bfa_iocpf, fwcheck, struct bfa_iocpf, enum iocpf_event);
bfa_fsm_state_decl(bfa_iocpf, mismatch, struct bfa_iocpf, enum iocpf_event);
bfa_fsm_state_decl(bfa_iocpf, semwait, struct bfa_iocpf, enum iocpf_event);
bfa_fsm_state_decl(bfa_iocpf, hwinit, struct bfa_iocpf, enum iocpf_event);
bfa_fsm_state_decl(bfa_iocpf, enabling, struct bfa_iocpf, enum iocpf_event);
bfa_fsm_state_decl(bfa_iocpf, ready, struct bfa_iocpf, enum iocpf_event);
bfa_fsm_state_decl(bfa_iocpf, initfail_sync, struct bfa_iocpf,
						enum iocpf_event);
bfa_fsm_state_decl(bfa_iocpf, initfail, struct bfa_iocpf, enum iocpf_event);
bfa_fsm_state_decl(bfa_iocpf, fail_sync, struct bfa_iocpf, enum iocpf_event);
bfa_fsm_state_decl(bfa_iocpf, fail, struct bfa_iocpf, enum iocpf_event);
bfa_fsm_state_decl(bfa_iocpf, disabling, struct bfa_iocpf, enum iocpf_event);
bfa_fsm_state_decl(bfa_iocpf, disabling_sync, struct bfa_iocpf,
						enum iocpf_event);
bfa_fsm_state_decl(bfa_iocpf, disabled, struct bfa_iocpf, enum iocpf_event);

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

203
/* IOC State Machine */
R
Rasesh Mody 已提交
204

205
/* Beginning state. IOC uninit state. */
R
Rasesh Mody 已提交
206 207 208 209 210
static void
bfa_ioc_sm_uninit_entry(struct bfa_ioc *ioc)
{
}

211
/* IOC is in uninit state. */
R
Rasesh Mody 已提交
212 213 214 215 216 217 218 219 220
static void
bfa_ioc_sm_uninit(struct bfa_ioc *ioc, enum ioc_event event)
{
	switch (event) {
	case IOC_E_RESET:
		bfa_fsm_set_state(ioc, bfa_ioc_sm_reset);
		break;

	default:
221
		bfa_sm_fault(event);
R
Rasesh Mody 已提交
222 223 224
	}
}

225
/* Reset entry actions -- initialize state machine */
226 227 228
static void
bfa_ioc_sm_reset_entry(struct bfa_ioc *ioc)
{
R
Rasesh Mody 已提交
229
	bfa_fsm_set_state(&ioc->iocpf, bfa_iocpf_sm_reset);
230 231
}

232
/* IOC is in reset state. */
233 234 235 236 237
static void
bfa_ioc_sm_reset(struct bfa_ioc *ioc, enum ioc_event event)
{
	switch (event) {
	case IOC_E_ENABLE:
R
Rasesh Mody 已提交
238
		bfa_fsm_set_state(ioc, bfa_ioc_sm_enabling);
239 240 241 242 243 244 245
		break;

	case IOC_E_DISABLE:
		bfa_ioc_disable_comp(ioc);
		break;

	case IOC_E_DETACH:
R
Rasesh Mody 已提交
246 247 248 249
		bfa_fsm_set_state(ioc, bfa_ioc_sm_uninit);
		break;

	default:
250
		bfa_sm_fault(event);
R
Rasesh Mody 已提交
251 252 253 254 255 256 257 258 259
	}
}

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

260
/* Host IOC function is being enabled, awaiting response from firmware.
R
Rasesh Mody 已提交
261 262 263 264 265 266 267 268 269 270
 * Semaphore is acquired.
 */
static void
bfa_ioc_sm_enabling(struct bfa_ioc *ioc, enum ioc_event event)
{
	switch (event) {
	case IOC_E_ENABLED:
		bfa_fsm_set_state(ioc, bfa_ioc_sm_getattr);
		break;

R
Rasesh Mody 已提交
271
	case IOC_E_PFFAILED:
R
Rasesh Mody 已提交
272 273 274
		/* !!! fall through !!! */
	case IOC_E_HWERROR:
		ioc->cbfn->enable_cbfn(ioc->bfa, BFA_STATUS_IOC_FAILURE);
275
		bfa_fsm_set_state(ioc, bfa_ioc_sm_fail);
R
Rasesh Mody 已提交
276
		if (event != IOC_E_PFFAILED)
R
Rasesh Mody 已提交
277 278 279
			bfa_iocpf_initfail(ioc);
		break;

280 281 282 283 284
	case IOC_E_HWFAILED:
		ioc->cbfn->enable_cbfn(ioc->bfa, BFA_STATUS_IOC_FAILURE);
		bfa_fsm_set_state(ioc, bfa_ioc_sm_hwfail);
		break;

R
Rasesh Mody 已提交
285 286 287 288 289 290 291 292 293 294
	case IOC_E_DISABLE:
		bfa_fsm_set_state(ioc, bfa_ioc_sm_disabling);
		break;

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

	case IOC_E_ENABLE:
295 296 297
		break;

	default:
298
		bfa_sm_fault(event);
299 300 301
	}
}

302
/* Semaphore should be acquired for version check. */
303
static void
R
Rasesh Mody 已提交
304 305 306 307 308 309 310
bfa_ioc_sm_getattr_entry(struct bfa_ioc *ioc)
{
	mod_timer(&ioc->ioc_timer, jiffies +
		msecs_to_jiffies(BFA_IOC_TOV));
	bfa_ioc_send_getattr(ioc);
}

311
/* IOC configuration in progress. Timer is active. */
R
Rasesh Mody 已提交
312 313 314 315 316 317 318 319 320
static void
bfa_ioc_sm_getattr(struct bfa_ioc *ioc, enum ioc_event event)
{
	switch (event) {
	case IOC_E_FWRSP_GETATTR:
		del_timer(&ioc->ioc_timer);
		bfa_fsm_set_state(ioc, bfa_ioc_sm_op);
		break;

R
Rasesh Mody 已提交
321
	case IOC_E_PFFAILED:
R
Rasesh Mody 已提交
322 323 324 325 326
	case IOC_E_HWERROR:
		del_timer(&ioc->ioc_timer);
		/* fall through */
	case IOC_E_TIMEOUT:
		ioc->cbfn->enable_cbfn(ioc->bfa, BFA_STATUS_IOC_FAILURE);
327
		bfa_fsm_set_state(ioc, bfa_ioc_sm_fail);
R
Rasesh Mody 已提交
328
		if (event != IOC_E_PFFAILED)
R
Rasesh Mody 已提交
329 330 331 332 333 334 335 336 337 338 339 340
			bfa_iocpf_getattrfail(ioc);
		break;

	case IOC_E_DISABLE:
		del_timer(&ioc->ioc_timer);
		bfa_fsm_set_state(ioc, bfa_ioc_sm_disabling);
		break;

	case IOC_E_ENABLE:
		break;

	default:
341
		bfa_sm_fault(event);
R
Rasesh Mody 已提交
342 343 344 345 346 347 348
	}
}

static void
bfa_ioc_sm_op_entry(struct bfa_ioc *ioc)
{
	ioc->cbfn->enable_cbfn(ioc->bfa, BFA_STATUS_OK);
349
	bfa_ioc_event_notify(ioc, BFA_IOC_E_ENABLED);
J
Jing Huang 已提交
350
	bfa_ioc_hb_monitor(ioc);
R
Rasesh Mody 已提交
351 352 353 354 355 356 357 358 359 360 361 362 363 364
}

static void
bfa_ioc_sm_op(struct bfa_ioc *ioc, enum ioc_event event)
{
	switch (event) {
	case IOC_E_ENABLE:
		break;

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

R
Rasesh Mody 已提交
365
	case IOC_E_PFFAILED:
R
Rasesh Mody 已提交
366 367 368 369 370 371 372 373 374
	case IOC_E_HWERROR:
		bfa_ioc_hb_stop(ioc);
		/* !!! fall through !!! */
	case IOC_E_HBFAIL:
		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);

375 376
		bfa_ioc_fail_notify(ioc);

R
Rasesh Mody 已提交
377
		if (event != IOC_E_PFFAILED)
R
Rasesh Mody 已提交
378 379 380 381
			bfa_iocpf_fail(ioc);
		break;

	default:
382
		bfa_sm_fault(event);
R
Rasesh Mody 已提交
383 384 385 386 387 388 389 390 391
	}
}

static void
bfa_ioc_sm_disabling_entry(struct bfa_ioc *ioc)
{
	bfa_iocpf_disable(ioc);
}

392
/* IOC is being disabled */
R
Rasesh Mody 已提交
393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409
static void
bfa_ioc_sm_disabling(struct bfa_ioc *ioc, enum ioc_event event)
{
	switch (event) {
	case IOC_E_DISABLED:
		bfa_fsm_set_state(ioc, bfa_ioc_sm_disabled);
		break;

	case IOC_E_HWERROR:
		/*
		 * No state change.  Will move to disabled state
		 * after iocpf sm completes failure processing and
		 * moves to disabled state.
		 */
		bfa_iocpf_fail(ioc);
		break;

410 411 412 413 414
	case IOC_E_HWFAILED:
		bfa_fsm_set_state(ioc, bfa_ioc_sm_hwfail);
		bfa_ioc_disable_comp(ioc);
		break;

R
Rasesh Mody 已提交
415
	default:
416
		bfa_sm_fault(event);
R
Rasesh Mody 已提交
417 418 419
	}
}

420
/* IOC disable completion entry. */
R
Rasesh Mody 已提交
421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444
static void
bfa_ioc_sm_disabled_entry(struct bfa_ioc *ioc)
{
	bfa_ioc_disable_comp(ioc);
}

static void
bfa_ioc_sm_disabled(struct bfa_ioc *ioc, enum ioc_event event)
{
	switch (event) {
	case IOC_E_ENABLE:
		bfa_fsm_set_state(ioc, bfa_ioc_sm_enabling);
		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);
		bfa_iocpf_stop(ioc);
		break;

	default:
445
		bfa_sm_fault(event);
R
Rasesh Mody 已提交
446 447 448 449 450 451 452 453
	}
}

static void
bfa_ioc_sm_fail_retry_entry(struct bfa_ioc *ioc)
{
}

454
/* Hardware initialization retry. */
R
Rasesh Mody 已提交
455 456 457 458 459 460 461 462
static void
bfa_ioc_sm_fail_retry(struct bfa_ioc *ioc, enum ioc_event event)
{
	switch (event) {
	case IOC_E_ENABLED:
		bfa_fsm_set_state(ioc, bfa_ioc_sm_getattr);
		break;

R
Rasesh Mody 已提交
463
	case IOC_E_PFFAILED:
R
Rasesh Mody 已提交
464 465 466 467 468
	case IOC_E_HWERROR:
		/**
		 * Initialization retry failed.
		 */
		ioc->cbfn->enable_cbfn(ioc->bfa, BFA_STATUS_IOC_FAILURE);
469
		bfa_fsm_set_state(ioc, bfa_ioc_sm_fail);
R
Rasesh Mody 已提交
470
		if (event != IOC_E_PFFAILED)
R
Rasesh Mody 已提交
471 472 473
			bfa_iocpf_initfail(ioc);
		break;

474 475 476
	case IOC_E_HWFAILED:
		ioc->cbfn->enable_cbfn(ioc->bfa, BFA_STATUS_IOC_FAILURE);
		bfa_fsm_set_state(ioc, bfa_ioc_sm_hwfail);
R
Rasesh Mody 已提交
477 478 479 480 481 482 483 484 485 486 487 488 489 490 491
		break;

	case IOC_E_ENABLE:
		break;

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

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

	default:
492
		bfa_sm_fault(event);
R
Rasesh Mody 已提交
493 494 495 496 497
	}
}

static void
bfa_ioc_sm_fail_entry(struct bfa_ioc *ioc)
498
{
R
Rasesh Mody 已提交
499 500
}

501
/* IOC failure. */
R
Rasesh Mody 已提交
502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523
static void
bfa_ioc_sm_fail(struct bfa_ioc *ioc, enum ioc_event event)
{
	switch (event) {
	case IOC_E_ENABLE:
		ioc->cbfn->enable_cbfn(ioc->bfa, BFA_STATUS_IOC_FAILURE);
		break;

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

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

	case IOC_E_HWERROR:
		/* HB failure notification, ignore. */
		break;

	default:
524
		bfa_sm_fault(event);
R
Rasesh Mody 已提交
525 526 527
	}
}

528 529 530 531 532
static void
bfa_ioc_sm_hwfail_entry(struct bfa_ioc *ioc)
{
}

533
/* IOC failure. */
534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555
static void
bfa_ioc_sm_hwfail(struct bfa_ioc *ioc, enum ioc_event 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(event);
	}
}

556
/* IOCPF State Machine */
R
Rasesh Mody 已提交
557

558
/* Reset entry actions -- initialize state machine */
R
Rasesh Mody 已提交
559 560 561
static void
bfa_iocpf_sm_reset_entry(struct bfa_iocpf *iocpf)
{
562
	iocpf->fw_mismatch_notified = false;
R
Rasesh Mody 已提交
563 564 565
	iocpf->auto_recover = bfa_nw_auto_recover;
}

566
/* Beginning state. IOC is in reset state. */
R
Rasesh Mody 已提交
567 568 569 570 571 572 573 574 575 576 577 578
static void
bfa_iocpf_sm_reset(struct bfa_iocpf *iocpf, enum iocpf_event event)
{
	switch (event) {
	case IOCPF_E_ENABLE:
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_fwcheck);
		break;

	case IOCPF_E_STOP:
		break;

	default:
579
		bfa_sm_fault(event);
R
Rasesh Mody 已提交
580 581 582
	}
}

583
/* Semaphore should be acquired for version check. */
R
Rasesh Mody 已提交
584 585 586
static void
bfa_iocpf_sm_fwcheck_entry(struct bfa_iocpf *iocpf)
{
R
Rasesh Mody 已提交
587
	bfa_ioc_hw_sem_init(iocpf->ioc);
R
Rasesh Mody 已提交
588
	bfa_ioc_hw_sem_get(iocpf->ioc);
589 590
}

591
/* Awaiting h/w semaphore to continue with version check. */
592
static void
R
Rasesh Mody 已提交
593
bfa_iocpf_sm_fwcheck(struct bfa_iocpf *iocpf, enum iocpf_event event)
594
{
R
Rasesh Mody 已提交
595 596
	struct bfa_ioc *ioc = iocpf->ioc;

597
	switch (event) {
R
Rasesh Mody 已提交
598
	case IOCPF_E_SEMLOCKED:
599
		if (bfa_ioc_firmware_lock(ioc)) {
600
			if (bfa_ioc_sync_start(ioc)) {
R
Rasesh Mody 已提交
601 602 603 604 605 606 607 608
				bfa_ioc_sync_join(ioc);
				bfa_fsm_set_state(iocpf, bfa_iocpf_sm_hwinit);
			} else {
				bfa_ioc_firmware_unlock(ioc);
				bfa_nw_ioc_hw_sem_release(ioc);
				mod_timer(&ioc->sem_timer, jiffies +
					msecs_to_jiffies(BFA_IOC_HWSEM_TOV));
			}
609
		} else {
610
			bfa_nw_ioc_hw_sem_release(ioc);
R
Rasesh Mody 已提交
611
			bfa_fsm_set_state(iocpf, bfa_iocpf_sm_mismatch);
612 613 614
		}
		break;

615 616 617 618 619
	case IOCPF_E_SEM_ERROR:
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_fail);
		bfa_ioc_pf_hwfailed(ioc);
		break;

R
Rasesh Mody 已提交
620
	case IOCPF_E_DISABLE:
621
		bfa_ioc_hw_sem_get_cancel(ioc);
R
Rasesh Mody 已提交
622 623
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_reset);
		bfa_ioc_pf_disabled(ioc);
624 625
		break;

R
Rasesh Mody 已提交
626 627 628
	case IOCPF_E_STOP:
		bfa_ioc_hw_sem_get_cancel(ioc);
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_reset);
629 630 631
		break;

	default:
632
		bfa_sm_fault(event);
633 634 635
	}
}

636
/* Notify enable completion callback */
637
static void
R
Rasesh Mody 已提交
638
bfa_iocpf_sm_mismatch_entry(struct bfa_iocpf *iocpf)
639
{
R
Rasesh Mody 已提交
640
	/* Call only the first time sm enters fwmismatch state. */
641
	if (!iocpf->fw_mismatch_notified)
R
Rasesh Mody 已提交
642 643
		bfa_ioc_pf_fwmismatch(iocpf->ioc);

644
	iocpf->fw_mismatch_notified = true;
R
Rasesh Mody 已提交
645 646
	mod_timer(&(iocpf->ioc)->iocpf_timer, jiffies +
		msecs_to_jiffies(BFA_IOC_TOV));
647 648
}

649
/* Awaiting firmware version match. */
650
static void
R
Rasesh Mody 已提交
651
bfa_iocpf_sm_mismatch(struct bfa_iocpf *iocpf, enum iocpf_event event)
652
{
R
Rasesh Mody 已提交
653 654
	struct bfa_ioc *ioc = iocpf->ioc;

655
	switch (event) {
R
Rasesh Mody 已提交
656 657
	case IOCPF_E_TIMEOUT:
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_fwcheck);
658 659
		break;

R
Rasesh Mody 已提交
660 661 662 663
	case IOCPF_E_DISABLE:
		del_timer(&ioc->iocpf_timer);
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_reset);
		bfa_ioc_pf_disabled(ioc);
664 665
		break;

R
Rasesh Mody 已提交
666 667 668
	case IOCPF_E_STOP:
		del_timer(&ioc->iocpf_timer);
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_reset);
669 670 671
		break;

	default:
672
		bfa_sm_fault(event);
673 674 675
	}
}

676
/* Request for semaphore. */
677
static void
R
Rasesh Mody 已提交
678
bfa_iocpf_sm_semwait_entry(struct bfa_iocpf *iocpf)
679
{
R
Rasesh Mody 已提交
680
	bfa_ioc_hw_sem_get(iocpf->ioc);
681 682
}

683
/* Awaiting semaphore for h/w initialzation. */
684
static void
R
Rasesh Mody 已提交
685
bfa_iocpf_sm_semwait(struct bfa_iocpf *iocpf, enum iocpf_event event)
686
{
R
Rasesh Mody 已提交
687 688
	struct bfa_ioc *ioc = iocpf->ioc;

689
	switch (event) {
R
Rasesh Mody 已提交
690 691 692 693 694 695 696 697 698
	case IOCPF_E_SEMLOCKED:
		if (bfa_ioc_sync_complete(ioc)) {
			bfa_ioc_sync_join(ioc);
			bfa_fsm_set_state(iocpf, bfa_iocpf_sm_hwinit);
		} else {
			bfa_nw_ioc_hw_sem_release(ioc);
			mod_timer(&ioc->sem_timer, jiffies +
				msecs_to_jiffies(BFA_IOC_HWSEM_TOV));
		}
699 700
		break;

701 702 703 704 705
	case IOCPF_E_SEM_ERROR:
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_fail);
		bfa_ioc_pf_hwfailed(ioc);
		break;

R
Rasesh Mody 已提交
706
	case IOCPF_E_DISABLE:
707
		bfa_ioc_hw_sem_get_cancel(ioc);
R
Rasesh Mody 已提交
708
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabling_sync);
709 710 711
		break;

	default:
712
		bfa_sm_fault(event);
713 714 715 716
	}
}

static void
R
Rasesh Mody 已提交
717
bfa_iocpf_sm_hwinit_entry(struct bfa_iocpf *iocpf)
718
{
719
	iocpf->poll_time = 0;
720
	bfa_ioc_reset(iocpf->ioc, false);
721 722
}

723
/* Hardware is being initialized. Interrupts are enabled.
724 725 726
 * Holding hardware semaphore lock.
 */
static void
R
Rasesh Mody 已提交
727
bfa_iocpf_sm_hwinit(struct bfa_iocpf *iocpf, enum iocpf_event event)
728
{
R
Rasesh Mody 已提交
729 730
	struct bfa_ioc *ioc = iocpf->ioc;

731
	switch (event) {
R
Rasesh Mody 已提交
732 733
	case IOCPF_E_FWREADY:
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_enabling);
734 735
		break;

R
Rasesh Mody 已提交
736
	case IOCPF_E_TIMEOUT:
737
		bfa_nw_ioc_hw_sem_release(ioc);
738
		bfa_ioc_pf_failed(ioc);
R
Rasesh Mody 已提交
739
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_initfail_sync);
740 741
		break;

R
Rasesh Mody 已提交
742 743 744
	case IOCPF_E_DISABLE:
		del_timer(&ioc->iocpf_timer);
		bfa_ioc_sync_leave(ioc);
745
		bfa_nw_ioc_hw_sem_release(ioc);
R
Rasesh Mody 已提交
746
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabled);
747 748 749
		break;

	default:
750
		bfa_sm_fault(event);
751 752 753 754
	}
}

static void
R
Rasesh Mody 已提交
755
bfa_iocpf_sm_enabling_entry(struct bfa_iocpf *iocpf)
756
{
R
Rasesh Mody 已提交
757 758
	mod_timer(&(iocpf->ioc)->iocpf_timer, jiffies +
		msecs_to_jiffies(BFA_IOC_TOV));
759 760 761 762
	/**
	 * Enable Interrupts before sending fw IOC ENABLE cmd.
	 */
	iocpf->ioc->cbfn->reset_cbfn(iocpf->ioc->bfa);
R
Rasesh Mody 已提交
763
	bfa_ioc_send_enable(iocpf->ioc);
764 765
}

766
/* Host IOC function is being enabled, awaiting response from firmware.
767 768 769
 * Semaphore is acquired.
 */
static void
R
Rasesh Mody 已提交
770
bfa_iocpf_sm_enabling(struct bfa_iocpf *iocpf, enum iocpf_event event)
771
{
R
Rasesh Mody 已提交
772 773
	struct bfa_ioc *ioc = iocpf->ioc;

774
	switch (event) {
R
Rasesh Mody 已提交
775 776
	case IOCPF_E_FWRSP_ENABLE:
		del_timer(&ioc->iocpf_timer);
777
		bfa_nw_ioc_hw_sem_release(ioc);
R
Rasesh Mody 已提交
778
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_ready);
779 780
		break;

R
Rasesh Mody 已提交
781 782
	case IOCPF_E_INITFAIL:
		del_timer(&ioc->iocpf_timer);
783 784
		/* fall through */

R
Rasesh Mody 已提交
785
	case IOCPF_E_TIMEOUT:
786
		bfa_nw_ioc_hw_sem_release(ioc);
R
Rasesh Mody 已提交
787 788 789
		if (event == IOCPF_E_TIMEOUT)
			bfa_ioc_pf_failed(ioc);
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_initfail_sync);
790 791
		break;

R
Rasesh Mody 已提交
792 793
	case IOCPF_E_DISABLE:
		del_timer(&ioc->iocpf_timer);
794
		bfa_nw_ioc_hw_sem_release(ioc);
R
Rasesh Mody 已提交
795
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabling);
796 797 798
		break;

	default:
799
		bfa_sm_fault(event);
800 801 802 803
	}
}

static void
R
Rasesh Mody 已提交
804
bfa_iocpf_sm_ready_entry(struct bfa_iocpf *iocpf)
805
{
R
Rasesh Mody 已提交
806
	bfa_ioc_pf_enabled(iocpf->ioc);
807 808 809
}

static void
R
Rasesh Mody 已提交
810
bfa_iocpf_sm_ready(struct bfa_iocpf *iocpf, enum iocpf_event event)
811 812
{
	switch (event) {
R
Rasesh Mody 已提交
813 814
	case IOCPF_E_DISABLE:
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabling);
815 816
		break;

R
Rasesh Mody 已提交
817 818 819
	case IOCPF_E_GETATTRFAIL:
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_initfail_sync);
		break;
820

R
Rasesh Mody 已提交
821 822
	case IOCPF_E_FAIL:
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_fail_sync);
823 824 825
		break;

	default:
826
		bfa_sm_fault(event);
827 828 829 830
	}
}

static void
R
Rasesh Mody 已提交
831
bfa_iocpf_sm_disabling_entry(struct bfa_iocpf *iocpf)
832
{
R
Rasesh Mody 已提交
833 834 835
	mod_timer(&(iocpf->ioc)->iocpf_timer, jiffies +
		msecs_to_jiffies(BFA_IOC_TOV));
	bfa_ioc_send_disable(iocpf->ioc);
836 837
}

838
/* IOC is being disabled */
839
static void
R
Rasesh Mody 已提交
840
bfa_iocpf_sm_disabling(struct bfa_iocpf *iocpf, enum iocpf_event event)
841
{
R
Rasesh Mody 已提交
842
	struct bfa_ioc *ioc = iocpf->ioc;
843

R
Rasesh Mody 已提交
844 845 846 847
	switch (event) {
	case IOCPF_E_FWRSP_DISABLE:
		del_timer(&ioc->iocpf_timer);
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabling_sync);
848 849
		break;

R
Rasesh Mody 已提交
850 851
	case IOCPF_E_FAIL:
		del_timer(&ioc->iocpf_timer);
852
		/* fall through*/
853

R
Rasesh Mody 已提交
854
	case IOCPF_E_TIMEOUT:
R
Rasesh Mody 已提交
855
		bfa_ioc_set_cur_ioc_fwstate(ioc, BFI_IOC_FAIL);
R
Rasesh Mody 已提交
856 857 858 859
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabling_sync);
		break;

	case IOCPF_E_FWRSP_ENABLE:
860 861 862
		break;

	default:
863
		bfa_sm_fault(event);
864 865 866 867
	}
}

static void
R
Rasesh Mody 已提交
868
bfa_iocpf_sm_disabling_sync_entry(struct bfa_iocpf *iocpf)
869
{
R
Rasesh Mody 已提交
870
	bfa_ioc_hw_sem_get(iocpf->ioc);
871 872
}

873
/* IOC hb ack request is being removed. */
874
static void
R
Rasesh Mody 已提交
875
bfa_iocpf_sm_disabling_sync(struct bfa_iocpf *iocpf, enum iocpf_event event)
876
{
R
Rasesh Mody 已提交
877 878
	struct bfa_ioc *ioc = iocpf->ioc;

879
	switch (event) {
R
Rasesh Mody 已提交
880 881 882 883
	case IOCPF_E_SEMLOCKED:
		bfa_ioc_sync_leave(ioc);
		bfa_nw_ioc_hw_sem_release(ioc);
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabled);
884 885
		break;

886 887 888 889 890
	case IOCPF_E_SEM_ERROR:
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_fail);
		bfa_ioc_pf_hwfailed(ioc);
		break;

R
Rasesh Mody 已提交
891
	case IOCPF_E_FAIL:
892 893 894
		break;

	default:
895
		bfa_sm_fault(event);
896 897 898
	}
}

899
/* IOC disable completion entry. */
900
static void
R
Rasesh Mody 已提交
901
bfa_iocpf_sm_disabled_entry(struct bfa_iocpf *iocpf)
902
{
R
Rasesh Mody 已提交
903
	bfa_ioc_mbox_flush(iocpf->ioc);
R
Rasesh Mody 已提交
904
	bfa_ioc_pf_disabled(iocpf->ioc);
905 906 907
}

static void
R
Rasesh Mody 已提交
908
bfa_iocpf_sm_disabled(struct bfa_iocpf *iocpf, enum iocpf_event event)
909
{
R
Rasesh Mody 已提交
910
	struct bfa_ioc *ioc = iocpf->ioc;
911

R
Rasesh Mody 已提交
912 913 914
	switch (event) {
	case IOCPF_E_ENABLE:
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_semwait);
915 916
		break;

R
Rasesh Mody 已提交
917
	case IOCPF_E_STOP:
918
		bfa_ioc_firmware_unlock(ioc);
R
Rasesh Mody 已提交
919
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_reset);
920 921 922
		break;

	default:
923
		bfa_sm_fault(event);
924 925 926 927
	}
}

static void
R
Rasesh Mody 已提交
928
bfa_iocpf_sm_initfail_sync_entry(struct bfa_iocpf *iocpf)
929
{
K
Krishna Gudipati 已提交
930
	bfa_nw_ioc_debug_save_ftrc(iocpf->ioc);
R
Rasesh Mody 已提交
931
	bfa_ioc_hw_sem_get(iocpf->ioc);
932 933
}

934
/* Hardware initialization failed. */
935
static void
R
Rasesh Mody 已提交
936
bfa_iocpf_sm_initfail_sync(struct bfa_iocpf *iocpf, enum iocpf_event event)
937
{
R
Rasesh Mody 已提交
938 939
	struct bfa_ioc *ioc = iocpf->ioc;

940
	switch (event) {
R
Rasesh Mody 已提交
941 942
	case IOCPF_E_SEMLOCKED:
		bfa_ioc_notify_fail(ioc);
943
		bfa_ioc_sync_leave(ioc);
R
Rasesh Mody 已提交
944
		bfa_ioc_set_cur_ioc_fwstate(ioc, BFI_IOC_FAIL);
945 946 947 948 949 950 951
		bfa_nw_ioc_hw_sem_release(ioc);
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_initfail);
		break;

	case IOCPF_E_SEM_ERROR:
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_fail);
		bfa_ioc_pf_hwfailed(ioc);
952 953
		break;

R
Rasesh Mody 已提交
954 955 956 957 958 959 960
	case IOCPF_E_DISABLE:
		bfa_ioc_hw_sem_get_cancel(ioc);
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabling_sync);
		break;

	case IOCPF_E_STOP:
		bfa_ioc_hw_sem_get_cancel(ioc);
961
		bfa_ioc_firmware_unlock(ioc);
R
Rasesh Mody 已提交
962
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_reset);
963 964
		break;

R
Rasesh Mody 已提交
965
	case IOCPF_E_FAIL:
966 967 968
		break;

	default:
969
		bfa_sm_fault(event);
970 971 972 973
	}
}

static void
R
Rasesh Mody 已提交
974
bfa_iocpf_sm_initfail_entry(struct bfa_iocpf *iocpf)
975
{
R
Rasesh Mody 已提交
976
}
977

978
/* Hardware initialization failed. */
R
Rasesh Mody 已提交
979 980 981 982
static void
bfa_iocpf_sm_initfail(struct bfa_iocpf *iocpf, enum iocpf_event event)
{
	struct bfa_ioc *ioc = iocpf->ioc;
983

R
Rasesh Mody 已提交
984 985 986 987
	switch (event) {
	case IOCPF_E_DISABLE:
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabled);
		break;
988

R
Rasesh Mody 已提交
989 990 991 992 993 994
	case IOCPF_E_STOP:
		bfa_ioc_firmware_unlock(ioc);
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_reset);
		break;

	default:
995
		bfa_sm_fault(event);
996
	}
R
Rasesh Mody 已提交
997
}
998

R
Rasesh Mody 已提交
999 1000 1001
static void
bfa_iocpf_sm_fail_sync_entry(struct bfa_iocpf *iocpf)
{
1002
	/**
R
Rasesh Mody 已提交
1003
	 * Mark IOC as failed in hardware and stop firmware.
1004
	 */
R
Rasesh Mody 已提交
1005
	bfa_ioc_lpu_stop(iocpf->ioc);
1006 1007

	/**
R
Rasesh Mody 已提交
1008
	 * Flush any queued up mailbox requests.
1009
	 */
R
Rasesh Mody 已提交
1010
	bfa_ioc_mbox_flush(iocpf->ioc);
R
Rasesh Mody 已提交
1011
	bfa_ioc_hw_sem_get(iocpf->ioc);
1012 1013
}

1014
/* IOC is in failed state. */
1015
static void
R
Rasesh Mody 已提交
1016
bfa_iocpf_sm_fail_sync(struct bfa_iocpf *iocpf, enum iocpf_event event)
1017
{
R
Rasesh Mody 已提交
1018
	struct bfa_ioc *ioc = iocpf->ioc;
1019

R
Rasesh Mody 已提交
1020 1021 1022 1023 1024 1025
	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);
R
Rasesh Mody 已提交
1026
			bfa_ioc_set_cur_ioc_fwstate(ioc, BFI_IOC_FAIL);
R
Rasesh Mody 已提交
1027 1028 1029 1030 1031 1032 1033 1034 1035 1036
			bfa_nw_ioc_hw_sem_release(ioc);
			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 {
				bfa_nw_ioc_hw_sem_release(ioc);
				bfa_fsm_set_state(iocpf, bfa_iocpf_sm_semwait);
			}
		}
1037 1038
		break;

1039 1040 1041 1042 1043
	case IOCPF_E_SEM_ERROR:
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_fail);
		bfa_ioc_pf_hwfailed(ioc);
		break;

R
Rasesh Mody 已提交
1044 1045 1046
	case IOCPF_E_DISABLE:
		bfa_ioc_hw_sem_get_cancel(ioc);
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabling_sync);
1047 1048
		break;

R
Rasesh Mody 已提交
1049
	case IOCPF_E_FAIL:
1050 1051
		break;

R
Rasesh Mody 已提交
1052
	default:
1053
		bfa_sm_fault(event);
R
Rasesh Mody 已提交
1054 1055
	}
}
1056

R
Rasesh Mody 已提交
1057 1058 1059 1060 1061
static void
bfa_iocpf_sm_fail_entry(struct bfa_iocpf *iocpf)
{
}

1062
/* IOC is in failed state. */
R
Rasesh Mody 已提交
1063 1064 1065 1066 1067 1068
static void
bfa_iocpf_sm_fail(struct bfa_iocpf *iocpf, enum iocpf_event event)
{
	switch (event) {
	case IOCPF_E_DISABLE:
		bfa_fsm_set_state(iocpf, bfa_iocpf_sm_disabled);
1069
		break;
R
Rasesh Mody 已提交
1070

1071
	default:
1072
		bfa_sm_fault(event);
1073 1074 1075
	}
}

1076
/* BFA IOC private functions */
1077

1078
/* Notify common modules registered for notification. */
1079
static void
1080
bfa_ioc_event_notify(struct bfa_ioc *ioc, enum bfa_ioc_event event)
1081
{
1082
	struct bfa_ioc_notify *notify;
1083

1084
	list_for_each_entry(notify, &ioc->notify_q, qe)
1085
		notify->cbfn(notify->cbarg, event);
1086 1087
}

1088 1089 1090 1091 1092 1093 1094
static void
bfa_ioc_disable_comp(struct bfa_ioc *ioc)
{
	ioc->cbfn->disable_cbfn(ioc->bfa);
	bfa_ioc_event_notify(ioc, BFA_IOC_E_DISABLED);
}

1095
bool
1096
bfa_nw_ioc_sem_get(void __iomem *sem_reg)
1097 1098 1099 1100 1101 1102 1103
{
	u32 r32;
	int cnt = 0;
#define BFA_SEM_SPINCNT	3000

	r32 = readl(sem_reg);

1104
	while ((r32 & 1) && (cnt < BFA_SEM_SPINCNT)) {
1105 1106 1107 1108 1109
		cnt++;
		udelay(2);
		r32 = readl(sem_reg);
	}

1110
	if (!(r32 & 1))
1111 1112 1113 1114 1115 1116
		return true;

	return false;
}

void
1117
bfa_nw_ioc_sem_release(void __iomem *sem_reg)
1118
{
R
Rasesh Mody 已提交
1119
	readl(sem_reg);
1120 1121 1122
	writel(1, sem_reg);
}

1123 1124 1125 1126
/* Clear fwver hdr */
static void
bfa_ioc_fwver_clear(struct bfa_ioc *ioc)
{
1127
	u32 pgnum, loff = 0;
1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139
	int i;

	pgnum = PSS_SMEM_PGNUM(ioc->ioc_regs.smem_pg0, loff);
	writel(pgnum, ioc->ioc_regs.host_page_num_fn);

	for (i = 0; i < (sizeof(struct bfi_ioc_image_hdr) / sizeof(u32)); i++) {
		writel(0, ioc->ioc_regs.smem_page_start + loff);
		loff += sizeof(u32);
	}
}


R
Rasesh Mody 已提交
1140 1141 1142 1143
static void
bfa_ioc_hw_sem_init(struct bfa_ioc *ioc)
{
	struct bfi_ioc_image_hdr fwhdr;
1144 1145 1146 1147 1148 1149 1150 1151
	u32 fwstate, r32;

	/* Spin on init semaphore to serialize. */
	r32 = readl(ioc->ioc_regs.ioc_init_sem_reg);
	while (r32 & 0x1) {
		udelay(20);
		r32 = readl(ioc->ioc_regs.ioc_init_sem_reg);
	}
R
Rasesh Mody 已提交
1152

R
Rasesh Mody 已提交
1153
	fwstate = bfa_ioc_get_cur_ioc_fwstate(ioc);
1154 1155
	if (fwstate == BFI_IOC_UNINIT) {
		writel(1, ioc->ioc_regs.ioc_init_sem_reg);
R
Rasesh Mody 已提交
1156
		return;
1157
	}
R
Rasesh Mody 已提交
1158 1159 1160

	bfa_nw_ioc_fwver_get(ioc, &fwhdr);

1161 1162
	if (swab32(fwhdr.exec) == BFI_FWBOOT_TYPE_NORMAL) {
		writel(1, ioc->ioc_regs.ioc_init_sem_reg);
R
Rasesh Mody 已提交
1163
		return;
1164
	}
R
Rasesh Mody 已提交
1165

1166
	bfa_ioc_fwver_clear(ioc);
R
Rasesh Mody 已提交
1167 1168
	bfa_ioc_set_cur_ioc_fwstate(ioc, BFI_IOC_UNINIT);
	bfa_ioc_set_alt_ioc_fwstate(ioc, BFI_IOC_UNINIT);
R
Rasesh Mody 已提交
1169 1170 1171 1172 1173 1174

	/*
	 * Try to lock and then unlock the semaphore.
	 */
	readl(ioc->ioc_regs.ioc_sem_reg);
	writel(1, ioc->ioc_regs.ioc_sem_reg);
1175 1176 1177

	/* Unlock init semaphore */
	writel(1, ioc->ioc_regs.ioc_init_sem_reg);
R
Rasesh Mody 已提交
1178 1179
}

1180 1181 1182 1183 1184 1185 1186 1187 1188 1189
static void
bfa_ioc_hw_sem_get(struct bfa_ioc *ioc)
{
	u32	r32;

	/**
	 * First read to the semaphore register will return 0, subsequent reads
	 * will return 1. Semaphore is released by writing 1 to the register
	 */
	r32 = readl(ioc->ioc_regs.ioc_sem_reg);
1190 1191 1192 1193 1194
	if (r32 == ~0) {
		bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_SEM_ERROR);
		return;
	}
	if (!(r32 & 1)) {
R
Rasesh Mody 已提交
1195
		bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_SEMLOCKED);
1196 1197 1198 1199 1200 1201 1202 1203
		return;
	}

	mod_timer(&ioc->sem_timer, jiffies +
		msecs_to_jiffies(BFA_IOC_HWSEM_TOV));
}

void
1204
bfa_nw_ioc_hw_sem_release(struct bfa_ioc *ioc)
1205 1206 1207 1208 1209 1210 1211 1212 1213 1214
{
	writel(1, ioc->ioc_regs.ioc_sem_reg);
}

static void
bfa_ioc_hw_sem_get_cancel(struct bfa_ioc *ioc)
{
	del_timer(&ioc->sem_timer);
}

1215
/* Initialize LPU local memory (aka secondary memory / SRAM) */
1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279
static void
bfa_ioc_lmem_init(struct bfa_ioc *ioc)
{
	u32	pss_ctl;
	int		i;
#define PSS_LMEM_INIT_TIME  10000

	pss_ctl = readl(ioc->ioc_regs.pss_ctl_reg);
	pss_ctl &= ~__PSS_LMEM_RESET;
	pss_ctl |= __PSS_LMEM_INIT_EN;

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

	/**
	 * wait for memory initialization to be complete
	 */
	i = 0;
	do {
		pss_ctl = readl(ioc->ioc_regs.pss_ctl_reg);
		i++;
	} while (!(pss_ctl & __PSS_LMEM_INIT_DONE) && (i < PSS_LMEM_INIT_TIME));

	/**
	 * If memory initialization is not successful, IOC timeout will catch
	 * such failures.
	 */
	BUG_ON(!(pss_ctl & __PSS_LMEM_INIT_DONE));

	pss_ctl &= ~(__PSS_LMEM_INIT_DONE | __PSS_LMEM_INIT_EN);
	writel(pss_ctl, ioc->ioc_regs.pss_ctl_reg);
}

static void
bfa_ioc_lpu_start(struct bfa_ioc *ioc)
{
	u32	pss_ctl;

	/**
	 * Take processor out of reset.
	 */
	pss_ctl = readl(ioc->ioc_regs.pss_ctl_reg);
	pss_ctl &= ~__PSS_LPU0_RESET;

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

static void
bfa_ioc_lpu_stop(struct bfa_ioc *ioc)
{
	u32	pss_ctl;

	/**
	 * Put processors in reset.
	 */
	pss_ctl = readl(ioc->ioc_regs.pss_ctl_reg);
	pss_ctl |= (__PSS_LPU0_RESET | __PSS_LPU1_RESET);

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

1280
/* Get driver and firmware versions. */
1281
void
1282
bfa_nw_ioc_fwver_get(struct bfa_ioc *ioc, struct bfi_ioc_image_hdr *fwhdr)
1283
{
1284
	u32	pgnum;
1285 1286 1287 1288 1289 1290 1291 1292 1293 1294
	u32	loff = 0;
	int		i;
	u32	*fwsig = (u32 *) fwhdr;

	pgnum = bfa_ioc_smem_pgnum(ioc, loff);
	writel(pgnum, ioc->ioc_regs.host_page_num_fn);

	for (i = 0; i < (sizeof(struct bfi_ioc_image_hdr) / sizeof(u32));
	     i++) {
		fwsig[i] =
1295
			swab32(readl(loff + ioc->ioc_regs.smem_page_start));
1296 1297 1298 1299
		loff += sizeof(u32);
	}
}

R
Rasesh Mody 已提交
1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313
static bool
bfa_ioc_fwver_md5_check(struct bfi_ioc_image_hdr *fwhdr_1,
			struct bfi_ioc_image_hdr *fwhdr_2)
{
	int i;

	for (i = 0; i < BFI_IOC_MD5SUM_SZ; i++) {
		if (fwhdr_1->md5sum[i] != fwhdr_2->md5sum[i])
			return false;
	}

	return true;
}

1314
/* Returns TRUE if major minor and maintenance are same.
R
Rasesh Mody 已提交
1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360
 * If patch version are same, check for MD5 Checksum to be same.
 */
static bool
bfa_ioc_fw_ver_compatible(struct bfi_ioc_image_hdr *drv_fwhdr,
			  struct bfi_ioc_image_hdr *fwhdr_to_cmp)
{
	if (drv_fwhdr->signature != fwhdr_to_cmp->signature)
		return false;
	if (drv_fwhdr->fwver.major != fwhdr_to_cmp->fwver.major)
		return false;
	if (drv_fwhdr->fwver.minor != fwhdr_to_cmp->fwver.minor)
		return false;
	if (drv_fwhdr->fwver.maint != fwhdr_to_cmp->fwver.maint)
		return false;
	if (drv_fwhdr->fwver.patch == fwhdr_to_cmp->fwver.patch &&
	    drv_fwhdr->fwver.phase == fwhdr_to_cmp->fwver.phase &&
	    drv_fwhdr->fwver.build == fwhdr_to_cmp->fwver.build)
		return bfa_ioc_fwver_md5_check(drv_fwhdr, fwhdr_to_cmp);

	return true;
}

static bool
bfa_ioc_flash_fwver_valid(struct bfi_ioc_image_hdr *flash_fwhdr)
{
	if (flash_fwhdr->fwver.major == 0 || flash_fwhdr->fwver.major == 0xFF)
		return false;

	return true;
}

static bool
fwhdr_is_ga(struct bfi_ioc_image_hdr *fwhdr)
{
	if (fwhdr->fwver.phase == 0 &&
	    fwhdr->fwver.build == 0)
		return false;

	return true;
}

/* Returns TRUE if both are compatible and patch of fwhdr_to_cmp is better. */
static enum bfi_ioc_img_ver_cmp
bfa_ioc_fw_ver_patch_cmp(struct bfi_ioc_image_hdr *base_fwhdr,
			 struct bfi_ioc_image_hdr *fwhdr_to_cmp)
{
1361
	if (!bfa_ioc_fw_ver_compatible(base_fwhdr, fwhdr_to_cmp))
R
Rasesh Mody 已提交
1362 1363 1364 1365 1366 1367 1368 1369 1370 1371
		return BFI_IOC_IMG_VER_INCOMP;

	if (fwhdr_to_cmp->fwver.patch > base_fwhdr->fwver.patch)
		return BFI_IOC_IMG_VER_BETTER;
	else if (fwhdr_to_cmp->fwver.patch < base_fwhdr->fwver.patch)
		return BFI_IOC_IMG_VER_OLD;

	/* GA takes priority over internal builds of the same patch stream.
	 * At this point major minor maint and patch numbers are same.
	 */
1372
	if (fwhdr_is_ga(base_fwhdr))
R
Rasesh Mody 已提交
1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533
		if (fwhdr_is_ga(fwhdr_to_cmp))
			return BFI_IOC_IMG_VER_SAME;
		else
			return BFI_IOC_IMG_VER_OLD;
	else
		if (fwhdr_is_ga(fwhdr_to_cmp))
			return BFI_IOC_IMG_VER_BETTER;

	if (fwhdr_to_cmp->fwver.phase > base_fwhdr->fwver.phase)
		return BFI_IOC_IMG_VER_BETTER;
	else if (fwhdr_to_cmp->fwver.phase < base_fwhdr->fwver.phase)
		return BFI_IOC_IMG_VER_OLD;

	if (fwhdr_to_cmp->fwver.build > base_fwhdr->fwver.build)
		return BFI_IOC_IMG_VER_BETTER;
	else if (fwhdr_to_cmp->fwver.build < base_fwhdr->fwver.build)
		return BFI_IOC_IMG_VER_OLD;

	/* All Version Numbers are equal.
	 * Md5 check to be done as a part of compatibility check.
	 */
	return BFI_IOC_IMG_VER_SAME;
}

/* register definitions */
#define FLI_CMD_REG			0x0001d000
#define FLI_WRDATA_REG			0x0001d00c
#define FLI_RDDATA_REG			0x0001d010
#define FLI_ADDR_REG			0x0001d004
#define FLI_DEV_STATUS_REG		0x0001d014

#define BFA_FLASH_FIFO_SIZE		128	/* fifo size */
#define BFA_FLASH_CHECK_MAX		10000	/* max # of status check */
#define BFA_FLASH_BLOCKING_OP_MAX	1000000	/* max # of blocking op check */
#define BFA_FLASH_WIP_MASK		0x01	/* write in progress bit mask */

#define NFC_STATE_RUNNING		0x20000001
#define NFC_STATE_PAUSED		0x00004560
#define NFC_VER_VALID			0x147

enum bfa_flash_cmd {
	BFA_FLASH_FAST_READ	= 0x0b,	/* fast read */
	BFA_FLASH_WRITE_ENABLE	= 0x06,	/* write enable */
	BFA_FLASH_SECTOR_ERASE	= 0xd8,	/* sector erase */
	BFA_FLASH_WRITE		= 0x02,	/* write */
	BFA_FLASH_READ_STATUS	= 0x05,	/* read status */
};

/* hardware error definition */
enum bfa_flash_err {
	BFA_FLASH_NOT_PRESENT	= -1,	/*!< flash not present */
	BFA_FLASH_UNINIT	= -2,	/*!< flash not initialized */
	BFA_FLASH_BAD		= -3,	/*!< flash bad */
	BFA_FLASH_BUSY		= -4,	/*!< flash busy */
	BFA_FLASH_ERR_CMD_ACT	= -5,	/*!< command active never cleared */
	BFA_FLASH_ERR_FIFO_CNT	= -6,	/*!< fifo count never cleared */
	BFA_FLASH_ERR_WIP	= -7,	/*!< write-in-progress never cleared */
	BFA_FLASH_ERR_TIMEOUT	= -8,	/*!< fli timeout */
	BFA_FLASH_ERR_LEN	= -9,	/*!< invalid length */
};

/* flash command register data structure */
union bfa_flash_cmd_reg {
	struct {
#ifdef __BIG_ENDIAN
		u32	act:1;
		u32	rsv:1;
		u32	write_cnt:9;
		u32	read_cnt:9;
		u32	addr_cnt:4;
		u32	cmd:8;
#else
		u32	cmd:8;
		u32	addr_cnt:4;
		u32	read_cnt:9;
		u32	write_cnt:9;
		u32	rsv:1;
		u32	act:1;
#endif
	} r;
	u32	i;
};

/* flash device status register data structure */
union bfa_flash_dev_status_reg {
	struct {
#ifdef __BIG_ENDIAN
		u32	rsv:21;
		u32	fifo_cnt:6;
		u32	busy:1;
		u32	init_status:1;
		u32	present:1;
		u32	bad:1;
		u32	good:1;
#else
		u32	good:1;
		u32	bad:1;
		u32	present:1;
		u32	init_status:1;
		u32	busy:1;
		u32	fifo_cnt:6;
		u32	rsv:21;
#endif
	} r;
	u32	i;
};

/* flash address register data structure */
union bfa_flash_addr_reg {
	struct {
#ifdef __BIG_ENDIAN
		u32	addr:24;
		u32	dummy:8;
#else
		u32	dummy:8;
		u32	addr:24;
#endif
	} r;
	u32	i;
};

/* Flash raw private functions */
static void
bfa_flash_set_cmd(void __iomem *pci_bar, u8 wr_cnt,
		  u8 rd_cnt, u8 ad_cnt, u8 op)
{
	union bfa_flash_cmd_reg cmd;

	cmd.i = 0;
	cmd.r.act = 1;
	cmd.r.write_cnt = wr_cnt;
	cmd.r.read_cnt = rd_cnt;
	cmd.r.addr_cnt = ad_cnt;
	cmd.r.cmd = op;
	writel(cmd.i, (pci_bar + FLI_CMD_REG));
}

static void
bfa_flash_set_addr(void __iomem *pci_bar, u32 address)
{
	union bfa_flash_addr_reg addr;

	addr.r.addr = address & 0x00ffffff;
	addr.r.dummy = 0;
	writel(addr.i, (pci_bar + FLI_ADDR_REG));
}

static int
bfa_flash_cmd_act_check(void __iomem *pci_bar)
{
	union bfa_flash_cmd_reg cmd;

	cmd.i = readl(pci_bar + FLI_CMD_REG);

	if (cmd.r.act)
		return BFA_FLASH_ERR_CMD_ACT;

	return 0;
}

/* Flush FLI data fifo. */
A
Andrzej Hajda 已提交
1534
static int
R
Rasesh Mody 已提交
1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563
bfa_flash_fifo_flush(void __iomem *pci_bar)
{
	u32 i;
	u32 t;
	union bfa_flash_dev_status_reg dev_status;

	dev_status.i = readl(pci_bar + FLI_DEV_STATUS_REG);

	if (!dev_status.r.fifo_cnt)
		return 0;

	/* fifo counter in terms of words */
	for (i = 0; i < dev_status.r.fifo_cnt; i++)
		t = readl(pci_bar + FLI_RDDATA_REG);

	/* Check the device status. It may take some time. */
	for (i = 0; i < BFA_FLASH_CHECK_MAX; i++) {
		dev_status.i = readl(pci_bar + FLI_DEV_STATUS_REG);
		if (!dev_status.r.fifo_cnt)
			break;
	}

	if (dev_status.r.fifo_cnt)
		return BFA_FLASH_ERR_FIFO_CNT;

	return 0;
}

/* Read flash status. */
A
Andrzej Hajda 已提交
1564
static int
R
Rasesh Mody 已提交
1565 1566 1567
bfa_flash_status_read(void __iomem *pci_bar)
{
	union bfa_flash_dev_status_reg	dev_status;
A
Andrzej Hajda 已提交
1568
	int				status;
R
Rasesh Mody 已提交
1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601
	u32			ret_status;
	int				i;

	status = bfa_flash_fifo_flush(pci_bar);
	if (status < 0)
		return status;

	bfa_flash_set_cmd(pci_bar, 0, 4, 0, BFA_FLASH_READ_STATUS);

	for (i = 0; i < BFA_FLASH_CHECK_MAX; i++) {
		status = bfa_flash_cmd_act_check(pci_bar);
		if (!status)
			break;
	}

	if (status)
		return status;

	dev_status.i = readl(pci_bar + FLI_DEV_STATUS_REG);
	if (!dev_status.r.fifo_cnt)
		return BFA_FLASH_BUSY;

	ret_status = readl(pci_bar + FLI_RDDATA_REG);
	ret_status >>= 24;

	status = bfa_flash_fifo_flush(pci_bar);
	if (status < 0)
		return status;

	return ret_status;
}

/* Start flash read operation. */
A
Andrzej Hajda 已提交
1602
static int
R
Rasesh Mody 已提交
1603 1604 1605
bfa_flash_read_start(void __iomem *pci_bar, u32 offset, u32 len,
		     char *buf)
{
A
Andrzej Hajda 已提交
1606
	int status;
R
Rasesh Mody 已提交
1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665

	/* len must be mutiple of 4 and not exceeding fifo size */
	if (len == 0 || len > BFA_FLASH_FIFO_SIZE || (len & 0x03) != 0)
		return BFA_FLASH_ERR_LEN;

	/* check status */
	status = bfa_flash_status_read(pci_bar);
	if (status == BFA_FLASH_BUSY)
		status = bfa_flash_status_read(pci_bar);

	if (status < 0)
		return status;

	/* check if write-in-progress bit is cleared */
	if (status & BFA_FLASH_WIP_MASK)
		return BFA_FLASH_ERR_WIP;

	bfa_flash_set_addr(pci_bar, offset);

	bfa_flash_set_cmd(pci_bar, 0, (u8)len, 4, BFA_FLASH_FAST_READ);

	return 0;
}

/* Check flash read operation. */
static u32
bfa_flash_read_check(void __iomem *pci_bar)
{
	if (bfa_flash_cmd_act_check(pci_bar))
		return 1;

	return 0;
}

/* End flash read operation. */
static void
bfa_flash_read_end(void __iomem *pci_bar, u32 len, char *buf)
{
	u32 i;

	/* read data fifo up to 32 words */
	for (i = 0; i < len; i += 4) {
		u32 w = readl(pci_bar + FLI_RDDATA_REG);
		*((u32 *)(buf + i)) = swab32(w);
	}

	bfa_flash_fifo_flush(pci_bar);
}

/* Perform flash raw read. */

#define FLASH_BLOCKING_OP_MAX   500
#define FLASH_SEM_LOCK_REG	0x18820

static int
bfa_raw_sem_get(void __iomem *bar)
{
	int	locked;

1666
	locked = readl(bar + FLASH_SEM_LOCK_REG);
R
Rasesh Mody 已提交
1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678

	return !locked;
}

static enum bfa_status
bfa_flash_sem_get(void __iomem *bar)
{
	u32 n = FLASH_BLOCKING_OP_MAX;

	while (!bfa_raw_sem_get(bar)) {
		if (--n <= 0)
			return BFA_STATUS_BADFLASH;
1679
		mdelay(10);
R
Rasesh Mody 已提交
1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693
	}
	return BFA_STATUS_OK;
}

static void
bfa_flash_sem_put(void __iomem *bar)
{
	writel(0, (bar + FLASH_SEM_LOCK_REG));
}

static enum bfa_status
bfa_flash_raw_read(void __iomem *pci_bar, u32 offset, char *buf,
		   u32 len)
{
A
Andrzej Hajda 已提交
1694 1695
	u32 n;
	int status;
R
Rasesh Mody 已提交
1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738
	u32 off, l, s, residue, fifo_sz;

	residue = len;
	off = 0;
	fifo_sz = BFA_FLASH_FIFO_SIZE;
	status = bfa_flash_sem_get(pci_bar);
	if (status != BFA_STATUS_OK)
		return status;

	while (residue) {
		s = offset + off;
		n = s / fifo_sz;
		l = (n + 1) * fifo_sz - s;
		if (l > residue)
			l = residue;

		status = bfa_flash_read_start(pci_bar, offset + off, l,
								&buf[off]);
		if (status < 0) {
			bfa_flash_sem_put(pci_bar);
			return BFA_STATUS_FAILED;
		}

		n = BFA_FLASH_BLOCKING_OP_MAX;
		while (bfa_flash_read_check(pci_bar)) {
			if (--n <= 0) {
				bfa_flash_sem_put(pci_bar);
				return BFA_STATUS_FAILED;
			}
		}

		bfa_flash_read_end(pci_bar, l, &buf[off]);

		residue -= l;
		off += l;
	}
	bfa_flash_sem_put(pci_bar);

	return BFA_STATUS_OK;
}

#define BFA_FLASH_PART_FWIMG_ADDR	0x100000 /* fw image address */

S
stephen hemminger 已提交
1739
static enum bfa_status
R
Rasesh Mody 已提交
1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769
bfa_nw_ioc_flash_img_get_chnk(struct bfa_ioc *ioc, u32 off,
			      u32 *fwimg)
{
	return bfa_flash_raw_read(ioc->pcidev.pci_bar_kva,
			BFA_FLASH_PART_FWIMG_ADDR + (off * sizeof(u32)),
			(char *)fwimg, BFI_FLASH_CHUNK_SZ);
}

static enum bfi_ioc_img_ver_cmp
bfa_ioc_flash_fwver_cmp(struct bfa_ioc *ioc,
			struct bfi_ioc_image_hdr *base_fwhdr)
{
	struct bfi_ioc_image_hdr *flash_fwhdr;
	enum bfa_status status;
	u32 fwimg[BFI_FLASH_CHUNK_SZ_WORDS];

	status = bfa_nw_ioc_flash_img_get_chnk(ioc, 0, fwimg);
	if (status != BFA_STATUS_OK)
		return BFI_IOC_IMG_VER_INCOMP;

	flash_fwhdr = (struct bfi_ioc_image_hdr *)fwimg;
	if (bfa_ioc_flash_fwver_valid(flash_fwhdr))
		return bfa_ioc_fw_ver_patch_cmp(base_fwhdr, flash_fwhdr);
	else
		return BFI_IOC_IMG_VER_INCOMP;
}

/**
 * Returns TRUE if driver is willing to work with current smem f/w version.
 */
1770
bool
1771
bfa_nw_ioc_fwver_cmp(struct bfa_ioc *ioc, struct bfi_ioc_image_hdr *fwhdr)
1772 1773
{
	struct bfi_ioc_image_hdr *drv_fwhdr;
R
Rasesh Mody 已提交
1774
	enum bfi_ioc_img_ver_cmp smem_flash_cmp, drv_smem_cmp;
1775 1776

	drv_fwhdr = (struct bfi_ioc_image_hdr *)
1777
		bfa_cb_image_get_chunk(bfa_ioc_asic_gen(ioc), 0);
1778

R
Rasesh Mody 已提交
1779 1780 1781 1782 1783
	/* If smem is incompatible or old, driver should not work with it. */
	drv_smem_cmp = bfa_ioc_fw_ver_patch_cmp(drv_fwhdr, fwhdr);
	if (drv_smem_cmp == BFI_IOC_IMG_VER_INCOMP ||
	    drv_smem_cmp == BFI_IOC_IMG_VER_OLD) {
		return false;
1784 1785
	}

R
Rasesh Mody 已提交
1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798
	/* IF Flash has a better F/W than smem do not work with smem.
	 * If smem f/w == flash f/w, as smem f/w not old | incmp, work with it.
	 * If Flash is old or incomp work with smem iff smem f/w == drv f/w.
	 */
	smem_flash_cmp = bfa_ioc_flash_fwver_cmp(ioc, fwhdr);

	if (smem_flash_cmp == BFI_IOC_IMG_VER_BETTER)
		return false;
	else if (smem_flash_cmp == BFI_IOC_IMG_VER_SAME)
		return true;
	else
		return (drv_smem_cmp == BFI_IOC_IMG_VER_SAME) ?
			true : false;
1799 1800
}

1801
/* Return true if current running version is valid. Firmware signature and
1802 1803 1804
 * execution context (driver/bios) must match.
 */
static bool
1805
bfa_ioc_fwver_valid(struct bfa_ioc *ioc, u32 boot_env)
1806
{
R
Rasesh Mody 已提交
1807
	struct bfi_ioc_image_hdr fwhdr;
1808

1809
	bfa_nw_ioc_fwver_get(ioc, &fwhdr);
1810
	if (swab32(fwhdr.bootenv) != boot_env)
1811 1812
		return false;

1813
	return bfa_nw_ioc_fwver_cmp(ioc, &fwhdr);
1814 1815
}

1816
/* Conditionally flush any pending message from firmware at start. */
1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831
static void
bfa_ioc_msgflush(struct bfa_ioc *ioc)
{
	u32	r32;

	r32 = readl(ioc->ioc_regs.lpu_mbox_cmd);
	if (r32)
		writel(1, ioc->ioc_regs.lpu_mbox_cmd);
}

static void
bfa_ioc_hwinit(struct bfa_ioc *ioc, bool force)
{
	enum bfi_ioc_state ioc_fwstate;
	bool fwvalid;
1832
	u32 boot_env;
1833

R
Rasesh Mody 已提交
1834
	ioc_fwstate = bfa_ioc_get_cur_ioc_fwstate(ioc);
1835 1836 1837 1838

	if (force)
		ioc_fwstate = BFI_IOC_UNINIT;

1839 1840
	boot_env = BFI_FWBOOT_ENV_OS;

1841 1842 1843 1844
	/**
	 * check if firmware is valid
	 */
	fwvalid = (ioc_fwstate == BFI_IOC_UNINIT) ?
1845
		false : bfa_ioc_fwver_valid(ioc, boot_env);
1846 1847

	if (!fwvalid) {
R
Rasesh Mody 已提交
1848 1849 1850 1851
		if (bfa_ioc_boot(ioc, BFI_FWBOOT_TYPE_NORMAL, boot_env) ==
								BFA_STATUS_OK)
			bfa_ioc_poll_fwinit(ioc);

1852 1853 1854 1855 1856 1857 1858 1859
		return;
	}

	/**
	 * If hardware initialization is in progress (initialized by other IOC),
	 * just wait for an initialization completion interrupt.
	 */
	if (ioc_fwstate == BFI_IOC_INITING) {
1860
		bfa_ioc_poll_fwinit(ioc);
1861 1862 1863 1864 1865 1866 1867
		return;
	}

	/**
	 * If IOC function is disabled and firmware version is same,
	 * just re-enable IOC.
	 */
1868
	if (ioc_fwstate == BFI_IOC_DISABLED || ioc_fwstate == BFI_IOC_OP) {
1869 1870 1871 1872 1873
		/**
		 * When using MSI-X any pending firmware ready event should
		 * be flushed. Otherwise MSI-X interrupts are not delivered.
		 */
		bfa_ioc_msgflush(ioc);
R
Rasesh Mody 已提交
1874
		bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_FWREADY);
1875 1876 1877 1878 1879 1880
		return;
	}

	/**
	 * Initialize the h/w for any other states.
	 */
R
Rasesh Mody 已提交
1881 1882 1883
	if (bfa_ioc_boot(ioc, BFI_FWBOOT_TYPE_NORMAL, boot_env) ==
							BFA_STATUS_OK)
		bfa_ioc_poll_fwinit(ioc);
1884 1885 1886
}

void
I
Ivan Vecera 已提交
1887
bfa_nw_ioc_timeout(struct bfa_ioc *ioc)
1888 1889 1890 1891
{
	bfa_fsm_send_event(ioc, IOC_E_TIMEOUT);
}

1892
static void
1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923
bfa_ioc_mbox_send(struct bfa_ioc *ioc, void *ioc_msg, int len)
{
	u32 *msgp = (u32 *) ioc_msg;
	u32 i;

	BUG_ON(!(len <= BFI_IOC_MSGLEN_MAX));

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

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

	/*
	 * write 1 to mailbox CMD to trigger LPU event
	 */
	writel(1, ioc->ioc_regs.hfn_mbox_cmd);
	(void) readl(ioc->ioc_regs.hfn_mbox_cmd);
}

static void
bfa_ioc_send_enable(struct bfa_ioc *ioc)
{
	struct bfi_ioc_ctrl_req enable_req;

	bfi_h2i_set(enable_req.mh, BFI_MC_IOC, BFI_IOC_H2I_ENABLE_REQ,
		    bfa_ioc_portid(ioc));
1924
	enable_req.clscode = htons(ioc->clscode);
1925 1926 1927
	enable_req.rsvd = htons(0);
	/* overflow in 2106 */
	enable_req.tv_sec = ntohl(ktime_get_real_seconds());
1928 1929 1930 1931 1932 1933 1934 1935 1936 1937
	bfa_ioc_mbox_send(ioc, &enable_req, sizeof(struct bfi_ioc_ctrl_req));
}

static void
bfa_ioc_send_disable(struct bfa_ioc *ioc)
{
	struct bfi_ioc_ctrl_req disable_req;

	bfi_h2i_set(disable_req.mh, BFI_MC_IOC, BFI_IOC_H2I_DISABLE_REQ,
		    bfa_ioc_portid(ioc));
1938 1939 1940 1941
	disable_req.clscode = htons(ioc->clscode);
	disable_req.rsvd = htons(0);
	/* overflow in 2106 */
	disable_req.tv_sec = ntohl(ktime_get_real_seconds());
1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956
	bfa_ioc_mbox_send(ioc, &disable_req, sizeof(struct bfi_ioc_ctrl_req));
}

static void
bfa_ioc_send_getattr(struct bfa_ioc *ioc)
{
	struct bfi_ioc_getattr_req attr_req;

	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));
}

void
I
Ivan Vecera 已提交
1957
bfa_nw_ioc_hb_check(struct bfa_ioc *ioc)
1958
{
I
Ivan Vecera 已提交
1959
	u32 hb_count;
1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987

	hb_count = readl(ioc->ioc_regs.heartbeat);
	if (ioc->hb_count == hb_count) {
		bfa_ioc_recover(ioc);
		return;
	} else {
		ioc->hb_count = hb_count;
	}

	bfa_ioc_mbox_poll(ioc);
	mod_timer(&ioc->hb_timer, jiffies +
		msecs_to_jiffies(BFA_IOC_HB_TOV));
}

static void
bfa_ioc_hb_monitor(struct bfa_ioc *ioc)
{
	ioc->hb_count = readl(ioc->ioc_regs.heartbeat);
	mod_timer(&ioc->hb_timer, jiffies +
		msecs_to_jiffies(BFA_IOC_HB_TOV));
}

static void
bfa_ioc_hb_stop(struct bfa_ioc *ioc)
{
	del_timer(&ioc->hb_timer);
}

1988
/* Initiate a full firmware download. */
R
Rasesh Mody 已提交
1989
static enum bfa_status
1990
bfa_ioc_download_fw(struct bfa_ioc *ioc, u32 boot_type,
1991
		    u32 boot_env)
1992 1993
{
	u32 *fwimg;
1994
	u32 pgnum;
1995 1996 1997
	u32 loff = 0;
	u32 chunkno = 0;
	u32 i;
1998
	u32 asicmode;
R
Rasesh Mody 已提交
1999 2000 2001 2002 2003 2004 2005
	u32 fwimg_size;
	u32 fwimg_buf[BFI_FLASH_CHUNK_SZ_WORDS];
	enum bfa_status status;

	if (boot_env == BFI_FWBOOT_ENV_OS &&
	    boot_type == BFI_FWBOOT_TYPE_FLASH) {
		fwimg_size = BFI_FLASH_IMAGE_SZ/sizeof(u32);
2006

R
Rasesh Mody 已提交
2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017
		status = bfa_nw_ioc_flash_img_get_chnk(ioc,
			BFA_IOC_FLASH_CHUNK_ADDR(chunkno), fwimg_buf);
		if (status != BFA_STATUS_OK)
			return status;

		fwimg = fwimg_buf;
	} else {
		fwimg_size = bfa_cb_image_get_size(bfa_ioc_asic_gen(ioc));
		fwimg = bfa_cb_image_get_chunk(bfa_ioc_asic_gen(ioc),
					BFA_IOC_FLASH_CHUNK_ADDR(chunkno));
	}
2018 2019 2020 2021 2022

	pgnum = bfa_ioc_smem_pgnum(ioc, loff);

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

R
Rasesh Mody 已提交
2023
	for (i = 0; i < fwimg_size; i++) {
2024 2025
		if (BFA_IOC_FLASH_CHUNK_NO(i) != chunkno) {
			chunkno = BFA_IOC_FLASH_CHUNK_NO(i);
R
Rasesh Mody 已提交
2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037
			if (boot_env == BFI_FWBOOT_ENV_OS &&
			    boot_type == BFI_FWBOOT_TYPE_FLASH) {
				status = bfa_nw_ioc_flash_img_get_chnk(ioc,
					BFA_IOC_FLASH_CHUNK_ADDR(chunkno),
					fwimg_buf);
				if (status != BFA_STATUS_OK)
					return status;

				fwimg = fwimg_buf;
			} else {
				fwimg = bfa_cb_image_get_chunk(
					bfa_ioc_asic_gen(ioc),
2038
					BFA_IOC_FLASH_CHUNK_ADDR(chunkno));
R
Rasesh Mody 已提交
2039
			}
2040 2041 2042 2043 2044
		}

		/**
		 * write smem
		 */
2045 2046
		writel(swab32(fwimg[BFA_IOC_FLASH_OFFSET_IN_CHUNK(i)]),
		       ioc->ioc_regs.smem_page_start + loff);
2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064

		loff += sizeof(u32);

		/**
		 * handle page offset wrap around
		 */
		loff = PSS_SMEM_PGOFF(loff);
		if (loff == 0) {
			pgnum++;
			writel(pgnum,
				      ioc->ioc_regs.host_page_num_fn);
		}
	}

	writel(bfa_ioc_smem_pgnum(ioc, 0),
		      ioc->ioc_regs.host_page_num_fn);

	/*
2065
	 * Set boot type, env and device mode at the end.
2066
	*/
R
Rasesh Mody 已提交
2067 2068 2069 2070
	if (boot_env == BFI_FWBOOT_ENV_OS &&
	    boot_type == BFI_FWBOOT_TYPE_FLASH) {
		boot_type = BFI_FWBOOT_TYPE_NORMAL;
	}
2071 2072 2073 2074
	asicmode = BFI_FWBOOT_DEVMODE(ioc->asic_gen, ioc->asic_mode,
					ioc->port0_mode, ioc->port1_mode);
	writel(asicmode, ((ioc->ioc_regs.smem_page_start)
			+ BFI_FWBOOT_DEVMODE_OFF));
2075
	writel(boot_type, ((ioc->ioc_regs.smem_page_start)
2076
			+ (BFI_FWBOOT_TYPE_OFF)));
2077
	writel(boot_env, ((ioc->ioc_regs.smem_page_start)
2078
			+ (BFI_FWBOOT_ENV_OFF)));
R
Rasesh Mody 已提交
2079
	return BFA_STATUS_OK;
2080 2081 2082 2083 2084 2085 2086 2087
}

static void
bfa_ioc_reset(struct bfa_ioc *ioc, bool force)
{
	bfa_ioc_hwinit(ioc, force);
}

2088
/* BFA ioc enable reply by firmware */
2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099
static void
bfa_ioc_enable_reply(struct bfa_ioc *ioc, enum bfa_mode port_mode,
			u8 cap_bm)
{
	struct bfa_iocpf *iocpf = &ioc->iocpf;

	ioc->port_mode = ioc->port_mode_cfg = port_mode;
	ioc->ad_cap_bm = cap_bm;
	bfa_fsm_send_event(iocpf, IOCPF_E_FWRSP_ENABLE);
}

2100
/* Update BFA configuration from firmware configuration. */
2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112
static void
bfa_ioc_getattr_reply(struct bfa_ioc *ioc)
{
	struct bfi_ioc_attr *attr = ioc->attr;

	attr->adapter_prop  = ntohl(attr->adapter_prop);
	attr->card_type     = ntohl(attr->card_type);
	attr->maxfrsize	    = ntohs(attr->maxfrsize);

	bfa_fsm_send_event(ioc, IOC_E_FWRSP_GETATTR);
}

2113
/* Attach time initialization of mbox logic. */
2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126
static void
bfa_ioc_mbox_attach(struct bfa_ioc *ioc)
{
	struct bfa_ioc_mbox_mod *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;
	}
}

2127
/* Mbox poll timer -- restarts any pending mailbox requests. */
2128 2129 2130 2131 2132
static void
bfa_ioc_mbox_poll(struct bfa_ioc *ioc)
{
	struct bfa_ioc_mbox_mod *mod = &ioc->mbox_mod;
	struct bfa_mbox_cmd *cmd;
2133 2134 2135
	bfa_mbox_cmd_cbfn_t cbfn;
	void *cbarg;
	u32 stat;
2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152

	/**
	 * If no command pending, do nothing
	 */
	if (list_empty(&mod->cmd_q))
		return;

	/**
	 * If previous command is not yet fetched by firmware, do nothing
	 */
	stat = readl(ioc->ioc_regs.hfn_mbox_cmd);
	if (stat)
		return;

	/**
	 * Enqueue command to firmware.
	 */
2153 2154
	cmd = list_first_entry(&mod->cmd_q, struct bfa_mbox_cmd, qe);
	list_del(&cmd->qe);
2155
	bfa_ioc_mbox_send(ioc, cmd->msg, sizeof(cmd->msg));
2156 2157 2158 2159 2160 2161 2162 2163 2164 2165

	/**
	 * Give a callback to the client, indicating that the command is sent
	 */
	if (cmd->cbfn) {
		cbfn = cmd->cbfn;
		cbarg = cmd->cbarg;
		cmd->cbfn = NULL;
		cbfn(cbarg);
	}
2166 2167
}

2168
/* Cleanup any pending requests. */
2169
static void
R
Rasesh Mody 已提交
2170
bfa_ioc_mbox_flush(struct bfa_ioc *ioc)
2171 2172 2173 2174
{
	struct bfa_ioc_mbox_mod *mod = &ioc->mbox_mod;
	struct bfa_mbox_cmd *cmd;

2175 2176 2177 2178
	while (!list_empty(&mod->cmd_q)) {
		cmd = list_first_entry(&mod->cmd_q, struct bfa_mbox_cmd, qe);
		list_del(&cmd->qe);
	}
2179 2180
}

K
Krishna Gudipati 已提交
2181
/**
2182
 * bfa_nw_ioc_smem_read - Read data from SMEM to host through PCI memmap
K
Krishna Gudipati 已提交
2183
 *
2184 2185 2186 2187
 * @ioc:     memory for IOC
 * @tbuf:    app memory to store data from smem
 * @soff:    smem offset
 * @sz:      size of smem in bytes
K
Krishna Gudipati 已提交
2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201
 */
static int
bfa_nw_ioc_smem_read(struct bfa_ioc *ioc, void *tbuf, u32 soff, u32 sz)
{
	u32 pgnum, loff, r32;
	int i, len;
	u32 *buf = tbuf;

	pgnum = PSS_SMEM_PGNUM(ioc->ioc_regs.smem_pg0, soff);
	loff = PSS_SMEM_PGOFF(soff);

	/*
	 *  Hold semaphore to serialize pll init and fwtrc.
	*/
2202
	if (!bfa_nw_ioc_sem_get(ioc->ioc_regs.ioc_init_sem_reg))
K
Krishna Gudipati 已提交
2203 2204 2205 2206 2207 2208
		return 1;

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

	len = sz/sizeof(u32);
	for (i = 0; i < len; i++) {
2209
		r32 = swab32(readl(loff + ioc->ioc_regs.smem_page_start));
K
Krishna Gudipati 已提交
2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233
		buf[i] = be32_to_cpu(r32);
		loff += sizeof(u32);

		/**
		 * handle page offset wrap around
		 */
		loff = PSS_SMEM_PGOFF(loff);
		if (loff == 0) {
			pgnum++;
			writel(pgnum, ioc->ioc_regs.host_page_num_fn);
		}
	}

	writel(PSS_SMEM_PGNUM(ioc->ioc_regs.smem_pg0, 0),
	       ioc->ioc_regs.host_page_num_fn);

	/*
	 * release semaphore
	 */
	readl(ioc->ioc_regs.ioc_init_sem_reg);
	writel(1, ioc->ioc_regs.ioc_init_sem_reg);
	return 0;
}

2234
/* Retrieve saved firmware trace from a prior IOC failure. */
K
Krishna Gudipati 已提交
2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249
int
bfa_nw_ioc_debug_fwtrc(struct bfa_ioc *ioc, void *trcdata, int *trclen)
{
	u32 loff = BFI_IOC_TRC_OFF + BNA_DBG_FWTRC_LEN * ioc->port_id;
	int tlen, status = 0;

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

	status = bfa_nw_ioc_smem_read(ioc, trcdata, loff, tlen);
	*trclen = tlen;
	return status;
}

2250
/* Save firmware trace if configured. */
K
Krishna Gudipati 已提交
2251 2252 2253 2254 2255 2256
static void
bfa_nw_ioc_debug_save_ftrc(struct bfa_ioc *ioc)
{
	int tlen;

	if (ioc->dbg_fwsave_once) {
2257
		ioc->dbg_fwsave_once = false;
K
Krishna Gudipati 已提交
2258 2259 2260 2261 2262 2263 2264
		if (ioc->dbg_fwsave_len) {
			tlen = ioc->dbg_fwsave_len;
			bfa_nw_ioc_debug_fwtrc(ioc, ioc->dbg_fwsave, &tlen);
		}
	}
}

2265
/* Retrieve saved firmware trace from a prior IOC failure. */
K
Krishna Gudipati 已提交
2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282
int
bfa_nw_ioc_debug_fwsave(struct bfa_ioc *ioc, void *trcdata, int *trclen)
{
	int tlen;

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

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

	memcpy(trcdata, ioc->dbg_fwsave, tlen);
	*trclen = tlen;
	return BFA_STATUS_OK;
}

R
Rasesh Mody 已提交
2283 2284 2285 2286 2287 2288 2289
static void
bfa_ioc_fail_notify(struct bfa_ioc *ioc)
{
	/**
	 * Notify driver and common modules registered for notification.
	 */
	ioc->cbfn->hbfail_cbfn(ioc->bfa);
2290
	bfa_ioc_event_notify(ioc, BFA_IOC_E_FAILED);
K
Krishna Gudipati 已提交
2291
	bfa_nw_ioc_debug_save_ftrc(ioc);
R
Rasesh Mody 已提交
2292 2293
}

2294
/* IOCPF to IOC interface */
R
Rasesh Mody 已提交
2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307
static void
bfa_ioc_pf_enabled(struct bfa_ioc *ioc)
{
	bfa_fsm_send_event(ioc, IOC_E_ENABLED);
}

static void
bfa_ioc_pf_disabled(struct bfa_ioc *ioc)
{
	bfa_fsm_send_event(ioc, IOC_E_DISABLED);
}

static void
2308
bfa_ioc_pf_failed(struct bfa_ioc *ioc)
R
Rasesh Mody 已提交
2309
{
2310
	bfa_fsm_send_event(ioc, IOC_E_PFFAILED);
R
Rasesh Mody 已提交
2311 2312 2313
}

static void
2314
bfa_ioc_pf_hwfailed(struct bfa_ioc *ioc)
R
Rasesh Mody 已提交
2315
{
2316
	bfa_fsm_send_event(ioc, IOC_E_HWFAILED);
R
Rasesh Mody 已提交
2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327
}

static void
bfa_ioc_pf_fwmismatch(struct bfa_ioc *ioc)
{
	/**
	 * Provide enable completion callback and AEN notification.
	 */
	ioc->cbfn->enable_cbfn(ioc->bfa, BFA_STATUS_IOC_FAILURE);
}

2328
/* IOC public */
2329
static enum bfa_status
2330 2331 2332 2333 2334
bfa_ioc_pll_init(struct bfa_ioc *ioc)
{
	/*
	 *  Hold semaphore so that nobody can access the chip during init.
	 */
2335
	bfa_nw_ioc_sem_get(ioc->ioc_regs.ioc_init_sem_reg);
2336 2337 2338 2339

	bfa_ioc_pll_init_asic(ioc);

	ioc->pllinit = true;
2340 2341 2342 2343

	/* Initialize LMEM */
	bfa_ioc_lmem_init(ioc);

2344 2345 2346
	/*
	 *  release semaphore.
	 */
2347
	bfa_nw_ioc_sem_release(ioc->ioc_regs.ioc_init_sem_reg);
2348 2349 2350 2351

	return BFA_STATUS_OK;
}

2352
/* Interface used by diag module to do firmware boot with memory test
2353 2354
 * as the entry vector.
 */
R
Rasesh Mody 已提交
2355
static enum bfa_status
2356 2357
bfa_ioc_boot(struct bfa_ioc *ioc, enum bfi_fwboot_type boot_type,
		u32 boot_env)
2358
{
R
Rasesh Mody 已提交
2359 2360
	struct bfi_ioc_image_hdr *drv_fwhdr;
	enum bfa_status status;
2361 2362 2363
	bfa_ioc_stats(ioc, ioc_boots);

	if (bfa_ioc_pll_init(ioc) != BFA_STATUS_OK)
R
Rasesh Mody 已提交
2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375
		return BFA_STATUS_FAILED;
	if (boot_env == BFI_FWBOOT_ENV_OS &&
	    boot_type == BFI_FWBOOT_TYPE_NORMAL) {
		drv_fwhdr = (struct bfi_ioc_image_hdr *)
			bfa_cb_image_get_chunk(bfa_ioc_asic_gen(ioc), 0);
		/* Work with Flash iff flash f/w is better than driver f/w.
		 * Otherwise push drivers firmware.
		 */
		if (bfa_ioc_flash_fwver_cmp(ioc, drv_fwhdr) ==
			BFI_IOC_IMG_VER_BETTER)
			boot_type = BFI_FWBOOT_TYPE_FLASH;
	}
2376 2377 2378 2379

	/**
	 * Initialize IOC state of all functions on a chip reset.
	 */
2380
	if (boot_type == BFI_FWBOOT_TYPE_MEMTEST) {
R
Rasesh Mody 已提交
2381 2382
		bfa_ioc_set_cur_ioc_fwstate(ioc, BFI_IOC_MEMTEST);
		bfa_ioc_set_alt_ioc_fwstate(ioc, BFI_IOC_MEMTEST);
2383
	} else {
R
Rasesh Mody 已提交
2384 2385
		bfa_ioc_set_cur_ioc_fwstate(ioc, BFI_IOC_INITING);
		bfa_ioc_set_alt_ioc_fwstate(ioc, BFI_IOC_INITING);
2386 2387 2388
	}

	bfa_ioc_msgflush(ioc);
R
Rasesh Mody 已提交
2389 2390 2391 2392
	status = bfa_ioc_download_fw(ioc, boot_type, boot_env);
	if (status == BFA_STATUS_OK)
		bfa_ioc_lpu_start(ioc);
	else
2393
		bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_TIMEOUT);
R
Rasesh Mody 已提交
2394 2395

	return status;
2396 2397
}

2398
/* Enable/disable IOC failure auto recovery. */
2399
void
2400
bfa_nw_ioc_auto_recover(bool auto_recover)
2401
{
2402
	bfa_nw_auto_recover = auto_recover;
2403 2404
}

2405
static bool
2406 2407 2408 2409 2410 2411
bfa_ioc_msgget(struct bfa_ioc *ioc, void *mbmsg)
{
	u32	*msgp = mbmsg;
	u32	r32;
	int		i;

2412 2413 2414 2415
	r32 = readl(ioc->ioc_regs.lpu_mbox_cmd);
	if ((r32 & 1) == 0)
		return false;

2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430
	/**
	 * read the MBOX msg
	 */
	for (i = 0; i < (sizeof(union bfi_ioc_i2h_msg_u) / sizeof(u32));
	     i++) {
		r32 = readl(ioc->ioc_regs.lpu_mbox +
				   i * sizeof(u32));
		msgp[i] = htonl(r32);
	}

	/**
	 * turn off mailbox interrupt by clearing mailbox status
	 */
	writel(1, ioc->ioc_regs.lpu_mbox_cmd);
	readl(ioc->ioc_regs.lpu_mbox_cmd);
2431 2432

	return true;
2433 2434
}

2435
static void
2436 2437 2438
bfa_ioc_isr(struct bfa_ioc *ioc, struct bfi_mbmsg *m)
{
	union bfi_ioc_i2h_msg_u	*msg;
R
Rasesh Mody 已提交
2439
	struct bfa_iocpf *iocpf = &ioc->iocpf;
2440 2441 2442 2443 2444 2445 2446 2447 2448 2449

	msg = (union bfi_ioc_i2h_msg_u *) m;

	bfa_ioc_stats(ioc, ioc_isrs);

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

	case BFI_IOC_I2H_ENABLE_REPLY:
2450 2451 2452
		bfa_ioc_enable_reply(ioc,
			(enum bfa_mode)msg->fw_event.port_mode,
			msg->fw_event.cap_bm);
2453 2454 2455
		break;

	case BFI_IOC_I2H_DISABLE_REPLY:
R
Rasesh Mody 已提交
2456
		bfa_fsm_send_event(iocpf, IOCPF_E_FWRSP_DISABLE);
2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468
		break;

	case BFI_IOC_I2H_GETATTR_REPLY:
		bfa_ioc_getattr_reply(ioc);
		break;

	default:
		BUG_ON(1);
	}
}

/**
2469
 * bfa_nw_ioc_attach - IOC attach time initialization and setup.
2470
 *
2471 2472
 * @ioc:	memory for IOC
 * @bfa:	driver instance structure
2473 2474
 */
void
2475
bfa_nw_ioc_attach(struct bfa_ioc *ioc, void *bfa, struct bfa_ioc_cbfn *cbfn)
2476 2477 2478 2479 2480 2481
{
	ioc->bfa	= bfa;
	ioc->cbfn	= cbfn;
	ioc->fcmode	= false;
	ioc->pllinit	= false;
	ioc->dbg_fwsave_once = true;
R
Rasesh Mody 已提交
2482
	ioc->iocpf.ioc  = ioc;
2483 2484

	bfa_ioc_mbox_attach(ioc);
2485
	INIT_LIST_HEAD(&ioc->notify_q);
2486

R
Rasesh Mody 已提交
2487 2488
	bfa_fsm_set_state(ioc, bfa_ioc_sm_uninit);
	bfa_fsm_send_event(ioc, IOC_E_RESET);
2489 2490
}

2491
/* Driver detach time IOC cleanup. */
2492
void
2493
bfa_nw_ioc_detach(struct bfa_ioc *ioc)
2494 2495
{
	bfa_fsm_send_event(ioc, IOC_E_DETACH);
2496 2497 2498

	/* Done with detach, empty the notify_q. */
	INIT_LIST_HEAD(&ioc->notify_q);
2499 2500 2501
}

/**
2502
 * bfa_nw_ioc_pci_init - Setup IOC PCI properties.
2503
 *
2504
 * @pcidev:	PCI device information for this IOC
2505 2506
 */
void
2507
bfa_nw_ioc_pci_init(struct bfa_ioc *ioc, struct bfa_pcidev *pcidev,
2508
		 enum bfi_pcifn_class clscode)
2509
{
2510
	ioc->clscode	= clscode;
2511
	ioc->pcidev	= *pcidev;
2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527

	/**
	 * 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 PCI_DEVICE_ID_BROCADE_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;
		ioc->port_mode = ioc->port_mode_cfg = BFA_MODE_CNA;
		ioc->ad_cap_bm = BFA_CM_CNA;
		break;

R
Rasesh Mody 已提交
2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550
	case BFA_PCI_DEVICE_ID_CT2:
		ioc->asic_gen = BFI_ASIC_GEN_CT2;
		if (clscode == BFI_PCIFN_CLASS_FC &&
			pcidev->ssid == BFA_PCI_CT2_SSID_FC) {
			ioc->asic_mode  = BFI_ASIC_MODE_FC16;
			ioc->fcmode = true;
			ioc->port_mode = ioc->port_mode_cfg = BFA_MODE_HBA;
			ioc->ad_cap_bm = BFA_CM_HBA;
		} else {
			ioc->port0_mode = ioc->port1_mode = BFI_PORT_MODE_ETH;
			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;
			}
		}
		break;

2551 2552 2553
	default:
		BUG_ON(1);
	}
2554

2555 2556 2557 2558 2559
	/**
	 * Set asic specific interfaces.
	 */
	if (ioc->asic_gen == BFI_ASIC_GEN_CT)
		bfa_nw_ioc_set_ct_hwif(ioc);
2560 2561
	else {
		WARN_ON(ioc->asic_gen != BFI_ASIC_GEN_CT2);
2562
		bfa_nw_ioc_set_ct2_hwif(ioc);
2563 2564
		bfa_nw_ioc_ct2_poweron(ioc);
	}
2565 2566 2567 2568 2569 2570

	bfa_ioc_map_port(ioc);
	bfa_ioc_reg_init(ioc);
}

/**
2571
 * bfa_nw_ioc_mem_claim - Initialize IOC dma memory
2572
 *
2573 2574
 * @dm_kva:	kernel virtual address of IOC dma memory
 * @dm_pa:	physical address of IOC dma memory
2575 2576
 */
void
2577
bfa_nw_ioc_mem_claim(struct bfa_ioc *ioc,  u8 *dm_kva, u64 dm_pa)
2578 2579 2580 2581 2582 2583 2584 2585 2586
{
	/**
	 * dma memory for firmware attribute
	 */
	ioc->attr_dma.kva = dm_kva;
	ioc->attr_dma.pa = dm_pa;
	ioc->attr = (struct bfi_ioc_attr *) dm_kva;
}

2587
/* Return size of dma memory required. */
2588
u32
2589
bfa_nw_ioc_meminfo(void)
2590 2591 2592 2593 2594
{
	return roundup(sizeof(struct bfi_ioc_attr), BFA_DMA_ALIGN_SZ);
}

void
2595
bfa_nw_ioc_enable(struct bfa_ioc *ioc)
2596 2597 2598 2599 2600 2601 2602 2603
{
	bfa_ioc_stats(ioc, ioc_enables);
	ioc->dbg_fwsave_once = true;

	bfa_fsm_send_event(ioc, IOC_E_ENABLE);
}

void
2604
bfa_nw_ioc_disable(struct bfa_ioc *ioc)
2605 2606 2607 2608 2609
{
	bfa_ioc_stats(ioc, ioc_disables);
	bfa_fsm_send_event(ioc, IOC_E_DISABLE);
}

2610
/* Initialize memory for saving firmware trace. */
K
Krishna Gudipati 已提交
2611 2612 2613 2614 2615 2616 2617
void
bfa_nw_ioc_debug_memclaim(struct bfa_ioc *ioc, void *dbg_fwsave)
{
	ioc->dbg_fwsave = dbg_fwsave;
	ioc->dbg_fwsave_len = ioc->iocpf.auto_recover ? BNA_DBG_FWTRC_LEN : 0;
}

2618
static u32
2619 2620 2621 2622 2623
bfa_ioc_smem_pgnum(struct bfa_ioc *ioc, u32 fmaddr)
{
	return PSS_SMEM_PGNUM(ioc->ioc_regs.smem_pg0, fmaddr);
}

2624
/* Register mailbox message handler function, to be called by common modules */
2625
void
2626
bfa_nw_ioc_mbox_regisr(struct bfa_ioc *ioc, enum bfi_mclass mc,
2627 2628 2629 2630 2631 2632 2633 2634 2635
		    bfa_ioc_mbox_mcfunc_t cbfn, void *cbarg)
{
	struct bfa_ioc_mbox_mod *mod = &ioc->mbox_mod;

	mod->mbhdlr[mc].cbfn	= cbfn;
	mod->mbhdlr[mc].cbarg = cbarg;
}

/**
2636
 * bfa_nw_ioc_mbox_queue - Queue a mailbox command request to firmware.
2637
 *
2638 2639 2640 2641
 * @ioc:	IOC instance
 * @cmd:	Mailbox command
 *
 * Waits if mailbox is busy. Responsibility of caller to serialize
2642
 */
R
Rasesh Mody 已提交
2643 2644 2645
bool
bfa_nw_ioc_mbox_queue(struct bfa_ioc *ioc, struct bfa_mbox_cmd *cmd,
			bfa_mbox_cmd_cbfn_t cbfn, void *cbarg)
2646 2647 2648 2649
{
	struct bfa_ioc_mbox_mod *mod = &ioc->mbox_mod;
	u32			stat;

R
Rasesh Mody 已提交
2650 2651 2652
	cmd->cbfn = cbfn;
	cmd->cbarg = cbarg;

2653 2654 2655 2656 2657
	/**
	 * If a previous command is pending, queue new command
	 */
	if (!list_empty(&mod->cmd_q)) {
		list_add_tail(&cmd->qe, &mod->cmd_q);
R
Rasesh Mody 已提交
2658
		return true;
2659 2660 2661 2662 2663 2664 2665 2666
	}

	/**
	 * If mailbox is busy, queue command for poll timer
	 */
	stat = readl(ioc->ioc_regs.hfn_mbox_cmd);
	if (stat) {
		list_add_tail(&cmd->qe, &mod->cmd_q);
R
Rasesh Mody 已提交
2667
		return true;
2668 2669 2670 2671 2672 2673
	}

	/**
	 * mailbox is free -- queue command to firmware
	 */
	bfa_ioc_mbox_send(ioc, cmd->msg, sizeof(cmd->msg));
2674

R
Rasesh Mody 已提交
2675
	return false;
2676 2677
}

2678
/* Handle mailbox interrupts */
2679
void
2680
bfa_nw_ioc_mbox_isr(struct bfa_ioc *ioc)
2681 2682 2683 2684 2685
{
	struct bfa_ioc_mbox_mod *mod = &ioc->mbox_mod;
	struct bfi_mbmsg m;
	int				mc;

2686 2687 2688 2689 2690 2691 2692 2693 2694
	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;
		}
2695

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

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

2702
	bfa_ioc_lpu_read_stat(ioc);
2703

2704 2705 2706 2707
	/**
	 * Try to send pending mailbox commands
	 */
	bfa_ioc_mbox_poll(ioc);
2708 2709 2710
}

void
2711
bfa_nw_ioc_error_isr(struct bfa_ioc *ioc)
2712
{
R
Rasesh Mody 已提交
2713 2714
	bfa_ioc_stats(ioc, ioc_hbfails);
	bfa_ioc_stats_hb_count(ioc, ioc->hb_count);
2715 2716 2717
	bfa_fsm_send_event(ioc, IOC_E_HWERROR);
}

2718
/* return true if IOC is disabled */
2719 2720 2721 2722 2723 2724 2725
bool
bfa_nw_ioc_is_disabled(struct bfa_ioc *ioc)
{
	return bfa_fsm_cmp_state(ioc, bfa_ioc_sm_disabling) ||
		bfa_fsm_cmp_state(ioc, bfa_ioc_sm_disabled);
}

2726
/* return true if IOC is operational */
2727 2728 2729 2730 2731 2732
bool
bfa_nw_ioc_is_operational(struct bfa_ioc *ioc)
{
	return bfa_fsm_cmp_state(ioc, bfa_ioc_sm_op);
}

2733
/* Add to IOC heartbeat failure notification queue. To be used by common
2734 2735 2736
 * modules such as cee, port, diag.
 */
void
2737 2738
bfa_nw_ioc_notify_register(struct bfa_ioc *ioc,
			struct bfa_ioc_notify *notify)
2739
{
2740
	list_add_tail(&notify->qe, &ioc->notify_q);
2741 2742
}

2743
#define BFA_MFG_NAME "QLogic"
2744
static void
2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774
bfa_ioc_get_adapter_attr(struct bfa_ioc *ioc,
			 struct bfa_adapter_attr *ad_attr)
{
	struct bfi_ioc_attr *ioc_attr;

	ioc_attr = ioc->attr;

	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);
	memcpy(&ad_attr->vpd, &ioc_attr->vpd,
		      sizeof(struct bfa_mfg_vpd));

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

	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);

	ad_attr->card_type = ioc_attr->card_type;
	ad_attr->is_mezz = bfa_mfg_is_mezz(ioc_attr->card_type);

	if (BFI_ADAPTER_IS_SPECIAL(ioc_attr->adapter_prop))
		ad_attr->prototype = 1;
	else
		ad_attr->prototype = 0;

	ad_attr->pwwn = bfa_ioc_get_pwwn(ioc);
I
Ivan Vecera 已提交
2775
	bfa_nw_ioc_get_mac(ioc, ad_attr->mac);
2776 2777 2778 2779 2780 2781 2782 2783 2784

	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;

	bfa_ioc_get_pci_chip_rev(ioc, ad_attr->hw_ver);
}

2785
static enum bfa_ioc_type
2786 2787
bfa_ioc_get_type(struct bfa_ioc *ioc)
{
2788
	if (ioc->clscode == BFI_PCIFN_CLASS_ETH)
2789
		return BFA_IOC_TYPE_LL;
2790 2791 2792 2793 2794

	BUG_ON(!(ioc->clscode == BFI_PCIFN_CLASS_FC));

	return (ioc->attr->port_mode == BFI_PORT_MODE_FC)
		? BFA_IOC_TYPE_FC : BFA_IOC_TYPE_FCoE;
2795 2796
}

2797
static void
2798 2799 2800 2801 2802 2803 2804
bfa_ioc_get_adapter_serial_num(struct bfa_ioc *ioc, char *serial_num)
{
	memcpy(serial_num,
			(void *)ioc->attr->brcd_serialnum,
			BFA_ADAPTER_SERIAL_NUM_LEN);
}

2805
static void
2806 2807 2808 2809 2810
bfa_ioc_get_adapter_fw_ver(struct bfa_ioc *ioc, char *fw_ver)
{
	memcpy(fw_ver, ioc->attr->fw_version, BFA_VERSION_LEN);
}

2811
static void
2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825
bfa_ioc_get_pci_chip_rev(struct bfa_ioc *ioc, char *chip_rev)
{
	BUG_ON(!(chip_rev));

	memset(chip_rev, 0, BFA_IOC_CHIP_REV_LEN);

	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';
}

2826
static void
2827 2828 2829 2830 2831 2832
bfa_ioc_get_adapter_optrom_ver(struct bfa_ioc *ioc, char *optrom_ver)
{
	memcpy(optrom_ver, ioc->attr->optrom_version,
		      BFA_VERSION_LEN);
}

2833
static void
2834 2835
bfa_ioc_get_adapter_manufacturer(struct bfa_ioc *ioc, char *manufacturer)
{
2836
	strncpy(manufacturer, BFA_MFG_NAME, BFA_ADAPTER_MFG_NAME_LEN);
2837 2838
}

2839
static void
2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852
bfa_ioc_get_adapter_model(struct bfa_ioc *ioc, char *model)
{
	struct bfi_ioc_attr *ioc_attr;

	BUG_ON(!(model));
	memset(model, 0, BFA_ADAPTER_MODEL_NAME_LEN);

	ioc_attr = ioc->attr;

	snprintf(model, BFA_ADAPTER_MODEL_NAME_LEN, "%s-%u",
		BFA_MFG_NAME, ioc_attr->card_type);
}

2853
static enum bfa_ioc_state
2854 2855
bfa_ioc_get_state(struct bfa_ioc *ioc)
{
R
Rasesh Mody 已提交
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 2886 2887 2888 2889
	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;
2890 2891 2892
}

void
2893
bfa_nw_ioc_get_attr(struct bfa_ioc *ioc, struct bfa_ioc_attr *ioc_attr)
2894 2895 2896 2897
{
	memset((void *)ioc_attr, 0, sizeof(struct bfa_ioc_attr));

	ioc_attr->state = bfa_ioc_get_state(ioc);
2898
	ioc_attr->port_id = bfa_ioc_portid(ioc);
2899 2900 2901 2902
	ioc_attr->port_mode = ioc->port_mode;

	ioc_attr->port_mode_cfg = ioc->port_mode_cfg;
	ioc_attr->cap_bm = ioc->ad_cap_bm;
2903 2904 2905 2906 2907

	ioc_attr->ioc_type = bfa_ioc_get_type(ioc);

	bfa_ioc_get_adapter_attr(ioc, &ioc_attr->adapter_attr);

2908 2909 2910
	ioc_attr->pci_attr.device_id = bfa_ioc_devid(ioc);
	ioc_attr->pci_attr.pcifn = bfa_ioc_pcifn(ioc);
	ioc_attr->def_fn = bfa_ioc_is_default(ioc);
2911 2912 2913
	bfa_ioc_get_pci_chip_rev(ioc, ioc_attr->pci_attr.chip_rev);
}

2914
/* WWN public */
2915
static u64
2916 2917 2918 2919 2920
bfa_ioc_get_pwwn(struct bfa_ioc *ioc)
{
	return ioc->attr->pwwn;
}

I
Ivan Vecera 已提交
2921 2922
void
bfa_nw_ioc_get_mac(struct bfa_ioc *ioc, u8 *mac)
2923
{
I
Ivan Vecera 已提交
2924
	ether_addr_copy(mac, ioc->attr->mac);
2925 2926
}

2927
/* Firmware failure detected. Start recovery actions. */
2928 2929 2930
static void
bfa_ioc_recover(struct bfa_ioc *ioc)
{
2931 2932
	pr_crit("Heart Beat of IOC has failed\n");
	bfa_ioc_stats(ioc, ioc_hbfails);
R
Rasesh Mody 已提交
2933
	bfa_ioc_stats_hb_count(ioc, ioc->hb_count);
2934
	bfa_fsm_send_event(ioc, IOC_E_HBFAIL);
2935 2936
}

2937
/* BFA IOC PF private functions */
R
Rasesh Mody 已提交
2938 2939 2940 2941 2942 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 2971 2972 2973 2974 2975

static void
bfa_iocpf_enable(struct bfa_ioc *ioc)
{
	bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_ENABLE);
}

static void
bfa_iocpf_disable(struct bfa_ioc *ioc)
{
	bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_DISABLE);
}

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

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

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

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

void
I
Ivan Vecera 已提交
2976
bfa_nw_iocpf_timeout(struct bfa_ioc *ioc)
R
Rasesh Mody 已提交
2977
{
2978 2979 2980
	enum bfa_iocpf_state iocpf_st;

	iocpf_st = bfa_sm_to_state(iocpf_sm_table, ioc->iocpf.fsm);
R
Rasesh Mody 已提交
2981

2982 2983 2984 2985
	if (iocpf_st == BFA_IOCPF_HWINIT)
		bfa_ioc_poll_fwinit(ioc);
	else
		bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_TIMEOUT);
R
Rasesh Mody 已提交
2986
}
2987

R
Rasesh Mody 已提交
2988
void
I
Ivan Vecera 已提交
2989
bfa_nw_iocpf_sem_timeout(struct bfa_ioc *ioc)
R
Rasesh Mody 已提交
2990 2991
{
	bfa_ioc_hw_sem_get(ioc);
2992
}
2993 2994 2995 2996

static void
bfa_ioc_poll_fwinit(struct bfa_ioc *ioc)
{
R
Rasesh Mody 已提交
2997
	u32 fwstate = bfa_ioc_get_cur_ioc_fwstate(ioc);
2998 2999 3000 3001 3002 3003 3004

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

	if (ioc->iocpf.poll_time >= BFA_IOC_TOV) {
3005
		bfa_fsm_send_event(&ioc->iocpf, IOCPF_E_TIMEOUT);
3006 3007 3008 3009 3010 3011
	} else {
		ioc->iocpf.poll_time += BFA_IOC_POLL_TOV;
		mod_timer(&ioc->iocpf_timer, jiffies +
			msecs_to_jiffies(BFA_IOC_POLL_TOV));
	}
}
3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 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

/*
 *	Flash module specific
 */

/*
 * FLASH DMA buffer should be big enough to hold both MFG block and
 * asic block(64k) at the same time and also should be 2k aligned to
 * avoid write segement to cross sector boundary.
 */
#define BFA_FLASH_SEG_SZ	2048
#define BFA_FLASH_DMA_BUF_SZ	\
	roundup(0x010000 + sizeof(struct bfa_mfg_block), BFA_FLASH_SEG_SZ)

static void
bfa_flash_cb(struct bfa_flash *flash)
{
	flash->op_busy = 0;
	if (flash->cbfn)
		flash->cbfn(flash->cbarg, flash->status);
}

static void
bfa_flash_notify(void *cbarg, enum bfa_ioc_event event)
{
	struct bfa_flash *flash = cbarg;

	switch (event) {
	case BFA_IOC_E_DISABLED:
	case BFA_IOC_E_FAILED:
		if (flash->op_busy) {
			flash->status = BFA_STATUS_IOC_FAILURE;
			flash->cbfn(flash->cbarg, flash->status);
			flash->op_busy = 0;
		}
		break;
	default:
		break;
	}
}

/*
 * Send flash write request.
 */
static void
bfa_flash_write_send(struct bfa_flash *flash)
{
	struct bfi_flash_write_req *msg =
			(struct bfi_flash_write_req *) flash->mb.msg;
	u32	len;

	msg->type = be32_to_cpu(flash->type);
	msg->instance = flash->instance;
	msg->offset = be32_to_cpu(flash->addr_off + flash->offset);
	len = (flash->residue < BFA_FLASH_DMA_BUF_SZ) ?
	       flash->residue : BFA_FLASH_DMA_BUF_SZ;
	msg->length = be32_to_cpu(len);

	/* indicate if it's the last msg of the whole write operation */
	msg->last = (len == flash->residue) ? 1 : 0;

	bfi_h2i_set(msg->mh, BFI_MC_FLASH, BFI_FLASH_H2I_WRITE_REQ,
		    bfa_ioc_portid(flash->ioc));
	bfa_alen_set(&msg->alen, len, flash->dbuf_pa);
	memcpy(flash->dbuf_kva, flash->ubuf + flash->offset, len);
	bfa_nw_ioc_mbox_queue(flash->ioc, &flash->mb, NULL, NULL);

	flash->residue -= len;
	flash->offset += len;
}

3083 3084
/**
 * bfa_flash_read_send - Send flash read request.
3085
 *
3086
 * @cbarg: callback argument
3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107
 */
static void
bfa_flash_read_send(void *cbarg)
{
	struct bfa_flash *flash = cbarg;
	struct bfi_flash_read_req *msg =
			(struct bfi_flash_read_req *) flash->mb.msg;
	u32	len;

	msg->type = be32_to_cpu(flash->type);
	msg->instance = flash->instance;
	msg->offset = be32_to_cpu(flash->addr_off + flash->offset);
	len = (flash->residue < BFA_FLASH_DMA_BUF_SZ) ?
	       flash->residue : BFA_FLASH_DMA_BUF_SZ;
	msg->length = be32_to_cpu(len);
	bfi_h2i_set(msg->mh, BFI_MC_FLASH, BFI_FLASH_H2I_READ_REQ,
		    bfa_ioc_portid(flash->ioc));
	bfa_alen_set(&msg->alen, len, flash->dbuf_pa);
	bfa_nw_ioc_mbox_queue(flash->ioc, &flash->mb, NULL, NULL);
}

3108 3109
/**
 * bfa_flash_intr - Process flash response messages upon receiving interrupts.
3110
 *
3111 3112
 * @flasharg: flash structure
 * @msg: message structure
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
 */
static void
bfa_flash_intr(void *flasharg, struct bfi_mbmsg *msg)
{
	struct bfa_flash *flash = flasharg;
	u32	status;

	union {
		struct bfi_flash_query_rsp *query;
		struct bfi_flash_write_rsp *write;
		struct bfi_flash_read_rsp *read;
		struct bfi_mbmsg   *msg;
	} m;

	m.msg = msg;

	/* receiving response after ioc failure */
	if (!flash->op_busy && msg->mh.msg_id != BFI_FLASH_I2H_EVENT)
		return;

	switch (msg->mh.msg_id) {
	case BFI_FLASH_I2H_QUERY_RSP:
		status = be32_to_cpu(m.query->status);
		if (status == BFA_STATUS_OK) {
			u32	i;
			struct bfa_flash_attr *attr, *f;

			attr = (struct bfa_flash_attr *) flash->ubuf;
			f = (struct bfa_flash_attr *) flash->dbuf_kva;
			attr->status = be32_to_cpu(f->status);
			attr->npart = be32_to_cpu(f->npart);
			for (i = 0; i < attr->npart; i++) {
				attr->part[i].part_type =
					be32_to_cpu(f->part[i].part_type);
				attr->part[i].part_instance =
					be32_to_cpu(f->part[i].part_instance);
				attr->part[i].part_off =
					be32_to_cpu(f->part[i].part_off);
				attr->part[i].part_size =
					be32_to_cpu(f->part[i].part_size);
				attr->part[i].part_len =
					be32_to_cpu(f->part[i].part_len);
				attr->part[i].part_status =
					be32_to_cpu(f->part[i].part_status);
			}
		}
		flash->status = status;
		bfa_flash_cb(flash);
		break;
	case BFI_FLASH_I2H_WRITE_RSP:
		status = be32_to_cpu(m.write->status);
		if (status != BFA_STATUS_OK || flash->residue == 0) {
			flash->status = status;
			bfa_flash_cb(flash);
		} else
			bfa_flash_write_send(flash);
		break;
	case BFI_FLASH_I2H_READ_RSP:
		status = be32_to_cpu(m.read->status);
		if (status != BFA_STATUS_OK) {
			flash->status = status;
			bfa_flash_cb(flash);
		} else {
			u32 len = be32_to_cpu(m.read->length);
			memcpy(flash->ubuf + flash->offset,
			       flash->dbuf_kva, len);
			flash->residue -= len;
			flash->offset += len;
			if (flash->residue == 0) {
				flash->status = status;
				bfa_flash_cb(flash);
			} else
				bfa_flash_read_send(flash);
		}
		break;
	case BFI_FLASH_I2H_BOOT_VER_RSP:
	case BFI_FLASH_I2H_EVENT:
		break;
	default:
		WARN_ON(1);
	}
}

/*
 * Flash memory info API.
 */
u32
bfa_nw_flash_meminfo(void)
{
	return roundup(BFA_FLASH_DMA_BUF_SZ, BFA_DMA_ALIGN_SZ);
}

3205 3206
/**
 * bfa_nw_flash_attach - Flash attach API.
3207
 *
3208 3209 3210
 * @flash: flash structure
 * @ioc: ioc structure
 * @dev: device structure
3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224
 */
void
bfa_nw_flash_attach(struct bfa_flash *flash, struct bfa_ioc *ioc, void *dev)
{
	flash->ioc = ioc;
	flash->cbfn = NULL;
	flash->cbarg = NULL;
	flash->op_busy = 0;

	bfa_nw_ioc_mbox_regisr(flash->ioc, BFI_MC_FLASH, bfa_flash_intr, flash);
	bfa_ioc_notify_init(&flash->ioc_notify, bfa_flash_notify, flash);
	list_add_tail(&flash->ioc_notify.qe, &flash->ioc->notify_q);
}

3225 3226
/**
 * bfa_nw_flash_memclaim - Claim memory for flash
3227
 *
3228 3229 3230
 * @flash: flash structure
 * @dm_kva: pointer to virtual memory address
 * @dm_pa: physical memory address
3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241
 */
void
bfa_nw_flash_memclaim(struct bfa_flash *flash, u8 *dm_kva, u64 dm_pa)
{
	flash->dbuf_kva = dm_kva;
	flash->dbuf_pa = dm_pa;
	memset(flash->dbuf_kva, 0, BFA_FLASH_DMA_BUF_SZ);
	dm_kva += roundup(BFA_FLASH_DMA_BUF_SZ, BFA_DMA_ALIGN_SZ);
	dm_pa += roundup(BFA_FLASH_DMA_BUF_SZ, BFA_DMA_ALIGN_SZ);
}

3242 3243
/**
 * bfa_nw_flash_get_attr - Get flash attribute.
3244
 *
3245 3246 3247 3248
 * @flash: flash structure
 * @attr: flash attribute structure
 * @cbfn: callback function
 * @cbarg: callback argument
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
 *
 * Return status.
 */
enum bfa_status
bfa_nw_flash_get_attr(struct bfa_flash *flash, struct bfa_flash_attr *attr,
		      bfa_cb_flash cbfn, void *cbarg)
{
	struct bfi_flash_query_req *msg =
			(struct bfi_flash_query_req *) flash->mb.msg;

	if (!bfa_nw_ioc_is_operational(flash->ioc))
		return BFA_STATUS_IOC_NON_OP;

	if (flash->op_busy)
		return BFA_STATUS_DEVBUSY;

	flash->op_busy = 1;
	flash->cbfn = cbfn;
	flash->cbarg = cbarg;
	flash->ubuf = (u8 *) attr;

	bfi_h2i_set(msg->mh, BFI_MC_FLASH, BFI_FLASH_H2I_QUERY_REQ,
		    bfa_ioc_portid(flash->ioc));
	bfa_alen_set(&msg->alen, sizeof(struct bfa_flash_attr), flash->dbuf_pa);
	bfa_nw_ioc_mbox_queue(flash->ioc, &flash->mb, NULL, NULL);

	return BFA_STATUS_OK;
}

3278 3279
/**
 * bfa_nw_flash_update_part - Update flash partition.
3280
 *
3281 3282 3283 3284 3285 3286 3287 3288
 * @flash: flash structure
 * @type: flash partition type
 * @instance: flash partition instance
 * @buf: update data buffer
 * @len: data buffer length
 * @offset: offset relative to the partition starting address
 * @cbfn: callback function
 * @cbarg: callback argument
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
 *
 * Return status.
 */
enum bfa_status
bfa_nw_flash_update_part(struct bfa_flash *flash, u32 type, u8 instance,
			 void *buf, u32 len, u32 offset,
			 bfa_cb_flash cbfn, void *cbarg)
{
	if (!bfa_nw_ioc_is_operational(flash->ioc))
		return BFA_STATUS_IOC_NON_OP;

	/*
	 * 'len' must be in word (4-byte) boundary
	 */
	if (!len || (len & 0x03))
		return BFA_STATUS_FLASH_BAD_LEN;

	if (type == BFA_FLASH_PART_MFG)
		return BFA_STATUS_EINVAL;

	if (flash->op_busy)
		return BFA_STATUS_DEVBUSY;

	flash->op_busy = 1;
	flash->cbfn = cbfn;
	flash->cbarg = cbarg;
	flash->type = type;
	flash->instance = instance;
	flash->residue = len;
	flash->offset = 0;
	flash->addr_off = offset;
	flash->ubuf = buf;

	bfa_flash_write_send(flash);

	return BFA_STATUS_OK;
}

3327 3328
/**
 * bfa_nw_flash_read_part - Read flash partition.
3329
 *
3330 3331 3332 3333 3334 3335 3336 3337
 * @flash: flash structure
 * @type: flash partition type
 * @instance: flash partition instance
 * @buf: read data buffer
 * @len: data buffer length
 * @offset: offset relative to the partition starting address
 * @cbfn: callback function
 * @cbarg: callback argument
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
 *
 * Return status.
 */
enum bfa_status
bfa_nw_flash_read_part(struct bfa_flash *flash, u32 type, u8 instance,
		       void *buf, u32 len, u32 offset,
		       bfa_cb_flash cbfn, void *cbarg)
{
	if (!bfa_nw_ioc_is_operational(flash->ioc))
		return BFA_STATUS_IOC_NON_OP;

	/*
	 * 'len' must be in word (4-byte) boundary
	 */
	if (!len || (len & 0x03))
		return BFA_STATUS_FLASH_BAD_LEN;

	if (flash->op_busy)
		return BFA_STATUS_DEVBUSY;

	flash->op_busy = 1;
	flash->cbfn = cbfn;
	flash->cbarg = cbarg;
	flash->type = type;
	flash->instance = instance;
	flash->residue = len;
	flash->offset = 0;
	flash->addr_off = offset;
	flash->ubuf = buf;

	bfa_flash_read_send(flash);

	return BFA_STATUS_OK;
}