blob: 2eb0c6a2938d68a9276c4f19039445cc3ec93fdd [file] [log] [blame]
Krishna Gudipati0a20de42010-03-05 19:34:20 -08001/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07002 * Copyright (c) 2005-2010 Brocade Communications Systems, Inc.
Krishna Gudipati0a20de42010-03-05 19:34:20 -08003 * All rights reserved
4 * www.brocade.com
5 *
6 * Linux driver for Brocade Fibre Channel Host Bus Adapter.
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License (GPL) Version 2 as
10 * published by the Free Software Foundation
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 */
17
Maggie Zhangf16a1752010-12-09 19:12:32 -080018#include "bfad_drv.h"
Krishna Gudipatia36c61f2010-09-15 11:50:55 -070019#include "bfa_ioc.h"
Krishna Gudipati11189202011-06-13 15:50:35 -070020#include "bfi_reg.h"
Krishna Gudipatia36c61f2010-09-15 11:50:55 -070021#include "bfa_defs.h"
Krishna Gudipati0a20de42010-03-05 19:34:20 -080022
23BFA_TRC_FILE(CNA, IOC_CT);
24
Krishna Gudipatif1d584d2010-12-13 16:17:11 -080025#define bfa_ioc_ct_sync_pos(__ioc) \
26 ((uint32_t) (1 << bfa_ioc_pcifn(__ioc)))
27#define BFA_IOC_SYNC_REQD_SH 16
28#define bfa_ioc_ct_get_sync_ackd(__val) (__val & 0x0000ffff)
29#define bfa_ioc_ct_clear_sync_ackd(__val) (__val & 0xffff0000)
30#define bfa_ioc_ct_get_sync_reqd(__val) (__val >> BFA_IOC_SYNC_REQD_SH)
31#define bfa_ioc_ct_sync_reqd_pos(__ioc) \
32 (bfa_ioc_ct_sync_pos(__ioc) << BFA_IOC_SYNC_REQD_SH)
33
Krishna Gudipati0a20de42010-03-05 19:34:20 -080034/*
35 * forward declarations
36 */
Krishna Gudipati0a20de42010-03-05 19:34:20 -080037static bfa_boolean_t bfa_ioc_ct_firmware_lock(struct bfa_ioc_s *ioc);
38static void bfa_ioc_ct_firmware_unlock(struct bfa_ioc_s *ioc);
Krishna Gudipatif1d584d2010-12-13 16:17:11 -080039static void bfa_ioc_ct_notify_fail(struct bfa_ioc_s *ioc);
Krishna Gudipati0a20de42010-03-05 19:34:20 -080040static void bfa_ioc_ct_ownership_reset(struct bfa_ioc_s *ioc);
Jing Huang45d7f0c2011-04-13 11:45:53 -070041static bfa_boolean_t bfa_ioc_ct_sync_start(struct bfa_ioc_s *ioc);
Krishna Gudipatif1d584d2010-12-13 16:17:11 -080042static void bfa_ioc_ct_sync_join(struct bfa_ioc_s *ioc);
43static void bfa_ioc_ct_sync_leave(struct bfa_ioc_s *ioc);
44static void bfa_ioc_ct_sync_ack(struct bfa_ioc_s *ioc);
45static bfa_boolean_t bfa_ioc_ct_sync_complete(struct bfa_ioc_s *ioc);
Krishna Gudipati0a20de42010-03-05 19:34:20 -080046
Maggie52f94b62010-11-29 18:21:32 -080047static struct bfa_ioc_hwif_s hwif_ct;
Krishna Gudipati11189202011-06-13 15:50:35 -070048static struct bfa_ioc_hwif_s hwif_ct2;
Krishna Gudipati0a20de42010-03-05 19:34:20 -080049
Jing Huang5fbe25c2010-10-18 17:17:23 -070050/*
Krishna Gudipati0a20de42010-03-05 19:34:20 -080051 * Return true if firmware of current driver matches the running firmware.
52 */
53static bfa_boolean_t
54bfa_ioc_ct_firmware_lock(struct bfa_ioc_s *ioc)
55{
56 enum bfi_ioc_state ioc_fwstate;
Krishna Gudipatid1c61f82010-03-05 19:38:44 -080057 u32 usecnt;
Krishna Gudipati0a20de42010-03-05 19:34:20 -080058 struct bfi_ioc_image_hdr_s fwhdr;
59
Jing Huang5fbe25c2010-10-18 17:17:23 -070060 /*
Krishna Gudipati0a20de42010-03-05 19:34:20 -080061 * If bios boot (flash based) -- do not increment usage count
62 */
Krishna Gudipati11189202011-06-13 15:50:35 -070063 if (bfa_cb_image_get_size(bfa_ioc_asic_gen(ioc)) <
Krishna Gudipatia36c61f2010-09-15 11:50:55 -070064 BFA_IOC_FWIMG_MINSZ)
Krishna Gudipati0a20de42010-03-05 19:34:20 -080065 return BFA_TRUE;
66
67 bfa_ioc_sem_get(ioc->ioc_regs.ioc_usage_sem_reg);
Jing Huang53440262010-10-18 17:12:29 -070068 usecnt = readl(ioc->ioc_regs.ioc_usage_reg);
Krishna Gudipati0a20de42010-03-05 19:34:20 -080069
Jing Huang5fbe25c2010-10-18 17:17:23 -070070 /*
Krishna Gudipati0a20de42010-03-05 19:34:20 -080071 * If usage count is 0, always return TRUE.
72 */
73 if (usecnt == 0) {
Jing Huang53440262010-10-18 17:12:29 -070074 writel(1, ioc->ioc_regs.ioc_usage_reg);
Krishna Gudipati5a0adae2011-06-24 20:22:56 -070075 readl(ioc->ioc_regs.ioc_usage_sem_reg);
Maggie Zhangf7f738122010-12-09 19:08:43 -080076 writel(1, ioc->ioc_regs.ioc_usage_sem_reg);
Krishna Gudipatif1d584d2010-12-13 16:17:11 -080077 writel(0, ioc->ioc_regs.ioc_fail_sync);
Krishna Gudipati0a20de42010-03-05 19:34:20 -080078 bfa_trc(ioc, usecnt);
79 return BFA_TRUE;
80 }
81
Jing Huang53440262010-10-18 17:12:29 -070082 ioc_fwstate = readl(ioc->ioc_regs.ioc_fwstate);
Krishna Gudipati0a20de42010-03-05 19:34:20 -080083 bfa_trc(ioc, ioc_fwstate);
84
Jing Huang5fbe25c2010-10-18 17:17:23 -070085 /*
Krishna Gudipati0a20de42010-03-05 19:34:20 -080086 * Use count cannot be non-zero and chip in uninitialized state.
87 */
Jing Huangd4b671c2010-12-26 21:46:35 -080088 WARN_ON(ioc_fwstate == BFI_IOC_UNINIT);
Krishna Gudipati0a20de42010-03-05 19:34:20 -080089
Jing Huang5fbe25c2010-10-18 17:17:23 -070090 /*
Krishna Gudipati0a20de42010-03-05 19:34:20 -080091 * Check if another driver with a different firmware is active
92 */
93 bfa_ioc_fwver_get(ioc, &fwhdr);
94 if (!bfa_ioc_fwver_cmp(ioc, &fwhdr)) {
Krishna Gudipati5a0adae2011-06-24 20:22:56 -070095 readl(ioc->ioc_regs.ioc_usage_sem_reg);
Maggie Zhangf7f738122010-12-09 19:08:43 -080096 writel(1, ioc->ioc_regs.ioc_usage_sem_reg);
Krishna Gudipati0a20de42010-03-05 19:34:20 -080097 bfa_trc(ioc, usecnt);
98 return BFA_FALSE;
99 }
100
Jing Huang5fbe25c2010-10-18 17:17:23 -0700101 /*
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800102 * Same firmware version. Increment the reference count.
103 */
104 usecnt++;
Jing Huang53440262010-10-18 17:12:29 -0700105 writel(usecnt, ioc->ioc_regs.ioc_usage_reg);
Krishna Gudipati5a0adae2011-06-24 20:22:56 -0700106 readl(ioc->ioc_regs.ioc_usage_sem_reg);
Maggie Zhangf7f738122010-12-09 19:08:43 -0800107 writel(1, ioc->ioc_regs.ioc_usage_sem_reg);
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800108 bfa_trc(ioc, usecnt);
109 return BFA_TRUE;
110}
111
112static void
113bfa_ioc_ct_firmware_unlock(struct bfa_ioc_s *ioc)
114{
Krishna Gudipatid1c61f82010-03-05 19:38:44 -0800115 u32 usecnt;
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800116
Jing Huang5fbe25c2010-10-18 17:17:23 -0700117 /*
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800118 * If bios boot (flash based) -- do not decrement usage count
119 */
Krishna Gudipati11189202011-06-13 15:50:35 -0700120 if (bfa_cb_image_get_size(bfa_ioc_asic_gen(ioc)) <
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700121 BFA_IOC_FWIMG_MINSZ)
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800122 return;
123
Jing Huang5fbe25c2010-10-18 17:17:23 -0700124 /*
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800125 * decrement usage count
126 */
127 bfa_ioc_sem_get(ioc->ioc_regs.ioc_usage_sem_reg);
Jing Huang53440262010-10-18 17:12:29 -0700128 usecnt = readl(ioc->ioc_regs.ioc_usage_reg);
Jing Huangd4b671c2010-12-26 21:46:35 -0800129 WARN_ON(usecnt <= 0);
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800130
131 usecnt--;
Jing Huang53440262010-10-18 17:12:29 -0700132 writel(usecnt, ioc->ioc_regs.ioc_usage_reg);
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800133 bfa_trc(ioc, usecnt);
134
Krishna Gudipati5a0adae2011-06-24 20:22:56 -0700135 readl(ioc->ioc_regs.ioc_usage_sem_reg);
Maggie Zhangf7f738122010-12-09 19:08:43 -0800136 writel(1, ioc->ioc_regs.ioc_usage_sem_reg);
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800137}
138
Jing Huang5fbe25c2010-10-18 17:17:23 -0700139/*
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800140 * Notify other functions on HB failure.
141 */
142static void
Krishna Gudipatif1d584d2010-12-13 16:17:11 -0800143bfa_ioc_ct_notify_fail(struct bfa_ioc_s *ioc)
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800144{
Krishna Gudipati11189202011-06-13 15:50:35 -0700145 if (bfa_ioc_is_cna(ioc)) {
Jing Huang53440262010-10-18 17:12:29 -0700146 writel(__FW_INIT_HALT_P, ioc->ioc_regs.ll_halt);
Krishna Gudipatif1d584d2010-12-13 16:17:11 -0800147 writel(__FW_INIT_HALT_P, ioc->ioc_regs.alt_ll_halt);
Krishna Gudipati816e49b2010-03-05 19:36:56 -0800148 /* Wait for halt to take effect */
Jing Huang53440262010-10-18 17:12:29 -0700149 readl(ioc->ioc_regs.ll_halt);
Krishna Gudipatif1d584d2010-12-13 16:17:11 -0800150 readl(ioc->ioc_regs.alt_ll_halt);
Krishna Gudipati816e49b2010-03-05 19:36:56 -0800151 } else {
Krishna Gudipati11189202011-06-13 15:50:35 -0700152 writel(~0U, ioc->ioc_regs.err_set);
Jing Huang53440262010-10-18 17:12:29 -0700153 readl(ioc->ioc_regs.err_set);
Krishna Gudipati816e49b2010-03-05 19:36:56 -0800154 }
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800155}
156
Jing Huang5fbe25c2010-10-18 17:17:23 -0700157/*
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800158 * Host to LPU mailbox message addresses
159 */
Krishna Gudipati11189202011-06-13 15:50:35 -0700160static struct { u32 hfn_mbox, lpu_mbox, hfn_pgn; } ct_fnreg[] = {
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800161 { HOSTFN0_LPU_MBOX0_0, LPU_HOSTFN0_MBOX0_0, HOST_PAGE_NUM_FN0 },
162 { HOSTFN1_LPU_MBOX0_8, LPU_HOSTFN1_MBOX0_8, HOST_PAGE_NUM_FN1 },
163 { HOSTFN2_LPU_MBOX0_0, LPU_HOSTFN2_MBOX0_0, HOST_PAGE_NUM_FN2 },
164 { HOSTFN3_LPU_MBOX0_8, LPU_HOSTFN3_MBOX0_8, HOST_PAGE_NUM_FN3 }
165};
166
Jing Huang5fbe25c2010-10-18 17:17:23 -0700167/*
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800168 * Host <-> LPU mailbox command/status registers - port 0
169 */
Krishna Gudipati11189202011-06-13 15:50:35 -0700170static struct { u32 hfn, lpu; } ct_p0reg[] = {
171 { HOSTFN0_LPU0_CMD_STAT, LPU0_HOSTFN0_CMD_STAT },
172 { HOSTFN1_LPU0_CMD_STAT, LPU0_HOSTFN1_CMD_STAT },
173 { HOSTFN2_LPU0_CMD_STAT, LPU0_HOSTFN2_CMD_STAT },
174 { HOSTFN3_LPU0_CMD_STAT, LPU0_HOSTFN3_CMD_STAT }
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800175};
176
Jing Huang5fbe25c2010-10-18 17:17:23 -0700177/*
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800178 * Host <-> LPU mailbox command/status registers - port 1
179 */
Krishna Gudipati11189202011-06-13 15:50:35 -0700180static struct { u32 hfn, lpu; } ct_p1reg[] = {
181 { HOSTFN0_LPU1_CMD_STAT, LPU1_HOSTFN0_CMD_STAT },
182 { HOSTFN1_LPU1_CMD_STAT, LPU1_HOSTFN1_CMD_STAT },
183 { HOSTFN2_LPU1_CMD_STAT, LPU1_HOSTFN2_CMD_STAT },
184 { HOSTFN3_LPU1_CMD_STAT, LPU1_HOSTFN3_CMD_STAT }
185};
186
Krishna Gudipati8b070b42011-06-13 15:52:40 -0700187static struct { uint32_t hfn_mbox, lpu_mbox, hfn_pgn, hfn, lpu, lpu_read; }
188 ct2_reg[] = {
Krishna Gudipati11189202011-06-13 15:50:35 -0700189 { CT2_HOSTFN_LPU0_MBOX0, CT2_LPU0_HOSTFN_MBOX0, CT2_HOSTFN_PAGE_NUM,
Krishna Gudipati8b070b42011-06-13 15:52:40 -0700190 CT2_HOSTFN_LPU0_CMD_STAT, CT2_LPU0_HOSTFN_CMD_STAT,
191 CT2_HOSTFN_LPU0_READ_STAT},
Krishna Gudipati11189202011-06-13 15:50:35 -0700192 { CT2_HOSTFN_LPU1_MBOX0, CT2_LPU1_HOSTFN_MBOX0, CT2_HOSTFN_PAGE_NUM,
Krishna Gudipati8b070b42011-06-13 15:52:40 -0700193 CT2_HOSTFN_LPU1_CMD_STAT, CT2_LPU1_HOSTFN_CMD_STAT,
194 CT2_HOSTFN_LPU1_READ_STAT},
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800195};
196
197static void
198bfa_ioc_ct_reg_init(struct bfa_ioc_s *ioc)
199{
Jing Huang53440262010-10-18 17:12:29 -0700200 void __iomem *rb;
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800201 int pcifn = bfa_ioc_pcifn(ioc);
202
203 rb = bfa_ioc_bar0(ioc);
204
Krishna Gudipati11189202011-06-13 15:50:35 -0700205 ioc->ioc_regs.hfn_mbox = rb + ct_fnreg[pcifn].hfn_mbox;
206 ioc->ioc_regs.lpu_mbox = rb + ct_fnreg[pcifn].lpu_mbox;
207 ioc->ioc_regs.host_page_num_fn = rb + ct_fnreg[pcifn].hfn_pgn;
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800208
209 if (ioc->port_id == 0) {
210 ioc->ioc_regs.heartbeat = rb + BFA_IOC0_HBEAT_REG;
211 ioc->ioc_regs.ioc_fwstate = rb + BFA_IOC0_STATE_REG;
Krishna Gudipatif1d584d2010-12-13 16:17:11 -0800212 ioc->ioc_regs.alt_ioc_fwstate = rb + BFA_IOC1_STATE_REG;
Krishna Gudipati11189202011-06-13 15:50:35 -0700213 ioc->ioc_regs.hfn_mbox_cmd = rb + ct_p0reg[pcifn].hfn;
214 ioc->ioc_regs.lpu_mbox_cmd = rb + ct_p0reg[pcifn].lpu;
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800215 ioc->ioc_regs.ll_halt = rb + FW_INIT_HALT_P0;
Krishna Gudipatif1d584d2010-12-13 16:17:11 -0800216 ioc->ioc_regs.alt_ll_halt = rb + FW_INIT_HALT_P1;
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800217 } else {
218 ioc->ioc_regs.heartbeat = (rb + BFA_IOC1_HBEAT_REG);
219 ioc->ioc_regs.ioc_fwstate = (rb + BFA_IOC1_STATE_REG);
Krishna Gudipatif1d584d2010-12-13 16:17:11 -0800220 ioc->ioc_regs.alt_ioc_fwstate = rb + BFA_IOC0_STATE_REG;
Krishna Gudipati11189202011-06-13 15:50:35 -0700221 ioc->ioc_regs.hfn_mbox_cmd = rb + ct_p1reg[pcifn].hfn;
222 ioc->ioc_regs.lpu_mbox_cmd = rb + ct_p1reg[pcifn].lpu;
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800223 ioc->ioc_regs.ll_halt = rb + FW_INIT_HALT_P1;
Krishna Gudipatif1d584d2010-12-13 16:17:11 -0800224 ioc->ioc_regs.alt_ll_halt = rb + FW_INIT_HALT_P0;
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800225 }
226
227 /*
228 * PSS control registers
229 */
230 ioc->ioc_regs.pss_ctl_reg = (rb + PSS_CTL_REG);
Krishna Gudipati8b651b42010-03-05 19:34:44 -0800231 ioc->ioc_regs.pss_err_status_reg = (rb + PSS_ERR_STATUS_REG);
Krishna Gudipati11189202011-06-13 15:50:35 -0700232 ioc->ioc_regs.app_pll_fast_ctl_reg = (rb + APP_PLL_LCLK_CTL_REG);
233 ioc->ioc_regs.app_pll_slow_ctl_reg = (rb + APP_PLL_SCLK_CTL_REG);
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800234
235 /*
236 * IOC semaphore registers and serialization
237 */
238 ioc->ioc_regs.ioc_sem_reg = (rb + HOST_SEM0_REG);
239 ioc->ioc_regs.ioc_usage_sem_reg = (rb + HOST_SEM1_REG);
240 ioc->ioc_regs.ioc_init_sem_reg = (rb + HOST_SEM2_REG);
241 ioc->ioc_regs.ioc_usage_reg = (rb + BFA_FW_USE_COUNT);
Krishna Gudipatif1d584d2010-12-13 16:17:11 -0800242 ioc->ioc_regs.ioc_fail_sync = (rb + BFA_IOC_FAIL_SYNC);
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800243
Jing Huang5fbe25c2010-10-18 17:17:23 -0700244 /*
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800245 * sram memory access
246 */
247 ioc->ioc_regs.smem_page_start = (rb + PSS_SMEM_PAGE_START);
248 ioc->ioc_regs.smem_pg0 = BFI_IOC_SMEM_PG0_CT;
Krishna Gudipati816e49b2010-03-05 19:36:56 -0800249
250 /*
251 * err set reg : for notification of hb failure in fcmode
252 */
253 ioc->ioc_regs.err_set = (rb + ERR_SET_REG);
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800254}
255
Krishna Gudipati11189202011-06-13 15:50:35 -0700256static void
257bfa_ioc_ct2_reg_init(struct bfa_ioc_s *ioc)
258{
259 void __iomem *rb;
260 int port = bfa_ioc_portid(ioc);
261
262 rb = bfa_ioc_bar0(ioc);
263
264 ioc->ioc_regs.hfn_mbox = rb + ct2_reg[port].hfn_mbox;
265 ioc->ioc_regs.lpu_mbox = rb + ct2_reg[port].lpu_mbox;
266 ioc->ioc_regs.host_page_num_fn = rb + ct2_reg[port].hfn_pgn;
267 ioc->ioc_regs.hfn_mbox_cmd = rb + ct2_reg[port].hfn;
268 ioc->ioc_regs.lpu_mbox_cmd = rb + ct2_reg[port].lpu;
Krishna Gudipati8b070b42011-06-13 15:52:40 -0700269 ioc->ioc_regs.lpu_read_stat = rb + ct2_reg[port].lpu_read;
Krishna Gudipati11189202011-06-13 15:50:35 -0700270
271 if (port == 0) {
272 ioc->ioc_regs.heartbeat = rb + CT2_BFA_IOC0_HBEAT_REG;
273 ioc->ioc_regs.ioc_fwstate = rb + CT2_BFA_IOC0_STATE_REG;
274 ioc->ioc_regs.alt_ioc_fwstate = rb + CT2_BFA_IOC1_STATE_REG;
275 ioc->ioc_regs.ll_halt = rb + FW_INIT_HALT_P0;
276 ioc->ioc_regs.alt_ll_halt = rb + FW_INIT_HALT_P1;
277 } else {
278 ioc->ioc_regs.heartbeat = (rb + CT2_BFA_IOC1_HBEAT_REG);
279 ioc->ioc_regs.ioc_fwstate = (rb + CT2_BFA_IOC1_STATE_REG);
280 ioc->ioc_regs.alt_ioc_fwstate = rb + CT2_BFA_IOC0_STATE_REG;
281 ioc->ioc_regs.ll_halt = rb + FW_INIT_HALT_P1;
282 ioc->ioc_regs.alt_ll_halt = rb + FW_INIT_HALT_P0;
283 }
284
285 /*
286 * PSS control registers
287 */
288 ioc->ioc_regs.pss_ctl_reg = (rb + PSS_CTL_REG);
289 ioc->ioc_regs.pss_err_status_reg = (rb + PSS_ERR_STATUS_REG);
290 ioc->ioc_regs.app_pll_fast_ctl_reg = (rb + CT2_APP_PLL_LCLK_CTL_REG);
291 ioc->ioc_regs.app_pll_slow_ctl_reg = (rb + CT2_APP_PLL_SCLK_CTL_REG);
292
293 /*
294 * IOC semaphore registers and serialization
295 */
296 ioc->ioc_regs.ioc_sem_reg = (rb + CT2_HOST_SEM0_REG);
297 ioc->ioc_regs.ioc_usage_sem_reg = (rb + CT2_HOST_SEM1_REG);
298 ioc->ioc_regs.ioc_init_sem_reg = (rb + CT2_HOST_SEM2_REG);
Krishna Gudipati775c7742011-06-13 15:52:12 -0700299 ioc->ioc_regs.ioc_usage_reg = (rb + CT2_BFA_FW_USE_COUNT);
300 ioc->ioc_regs.ioc_fail_sync = (rb + CT2_BFA_IOC_FAIL_SYNC);
Krishna Gudipati11189202011-06-13 15:50:35 -0700301
302 /*
303 * sram memory access
304 */
305 ioc->ioc_regs.smem_page_start = (rb + PSS_SMEM_PAGE_START);
306 ioc->ioc_regs.smem_pg0 = BFI_IOC_SMEM_PG0_CT;
307
308 /*
309 * err set reg : for notification of hb failure in fcmode
310 */
311 ioc->ioc_regs.err_set = (rb + ERR_SET_REG);
312}
313
Jing Huang5fbe25c2010-10-18 17:17:23 -0700314/*
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800315 * Initialize IOC to port mapping.
316 */
317
318#define FNC_PERS_FN_SHIFT(__fn) ((__fn) * 8)
319static void
320bfa_ioc_ct_map_port(struct bfa_ioc_s *ioc)
321{
Jing Huang53440262010-10-18 17:12:29 -0700322 void __iomem *rb = ioc->pcidev.pci_bar_kva;
Krishna Gudipatid1c61f82010-03-05 19:38:44 -0800323 u32 r32;
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800324
Jing Huang5fbe25c2010-10-18 17:17:23 -0700325 /*
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800326 * For catapult, base port id on personality register and IOC type
327 */
Jing Huang53440262010-10-18 17:12:29 -0700328 r32 = readl(rb + FNC_PERS_REG);
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800329 r32 >>= FNC_PERS_FN_SHIFT(bfa_ioc_pcifn(ioc));
330 ioc->port_id = (r32 & __F0_PORT_MAP_MK) >> __F0_PORT_MAP_SH;
331
332 bfa_trc(ioc, bfa_ioc_pcifn(ioc));
333 bfa_trc(ioc, ioc->port_id);
334}
335
Krishna Gudipati11189202011-06-13 15:50:35 -0700336static void
337bfa_ioc_ct2_map_port(struct bfa_ioc_s *ioc)
338{
Krishna Gudipati5a0adae2011-06-24 20:22:56 -0700339 void __iomem *rb = ioc->pcidev.pci_bar_kva;
340 u32 r32;
341
342 r32 = readl(rb + CT2_HOSTFN_PERSONALITY0);
343 ioc->port_id = ((r32 & __FC_LL_PORT_MAP__MK) >> __FC_LL_PORT_MAP__SH);
Krishna Gudipati11189202011-06-13 15:50:35 -0700344
345 bfa_trc(ioc, bfa_ioc_pcifn(ioc));
346 bfa_trc(ioc, ioc->port_id);
347}
348
Jing Huang5fbe25c2010-10-18 17:17:23 -0700349/*
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800350 * Set interrupt mode for a function: INTX or MSIX
351 */
352static void
353bfa_ioc_ct_isr_mode_set(struct bfa_ioc_s *ioc, bfa_boolean_t msix)
354{
Jing Huang53440262010-10-18 17:12:29 -0700355 void __iomem *rb = ioc->pcidev.pci_bar_kva;
Krishna Gudipatid1c61f82010-03-05 19:38:44 -0800356 u32 r32, mode;
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800357
Jing Huang53440262010-10-18 17:12:29 -0700358 r32 = readl(rb + FNC_PERS_REG);
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800359 bfa_trc(ioc, r32);
360
361 mode = (r32 >> FNC_PERS_FN_SHIFT(bfa_ioc_pcifn(ioc))) &
362 __F0_INTX_STATUS;
363
Jing Huang5fbe25c2010-10-18 17:17:23 -0700364 /*
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800365 * If already in desired mode, do not change anything
366 */
Krishna Gudipati11189202011-06-13 15:50:35 -0700367 if ((!msix && mode) || (msix && !mode))
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800368 return;
369
370 if (msix)
371 mode = __F0_INTX_STATUS_MSIX;
372 else
373 mode = __F0_INTX_STATUS_INTA;
374
375 r32 &= ~(__F0_INTX_STATUS << FNC_PERS_FN_SHIFT(bfa_ioc_pcifn(ioc)));
376 r32 |= (mode << FNC_PERS_FN_SHIFT(bfa_ioc_pcifn(ioc)));
377 bfa_trc(ioc, r32);
378
Jing Huang53440262010-10-18 17:12:29 -0700379 writel(r32, rb + FNC_PERS_REG);
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800380}
381
Krishna Gudipati8b070b42011-06-13 15:52:40 -0700382bfa_boolean_t
383bfa_ioc_ct2_lpu_read_stat(struct bfa_ioc_s *ioc)
384{
385 u32 r32;
386
387 r32 = readl(ioc->ioc_regs.lpu_read_stat);
388 if (r32) {
389 writel(1, ioc->ioc_regs.lpu_read_stat);
390 return BFA_TRUE;
391 }
392
393 return BFA_FALSE;
394}
395
Jing Huang5fbe25c2010-10-18 17:17:23 -0700396/*
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800397 * Cleanup hw semaphore and usecnt registers
398 */
399static void
400bfa_ioc_ct_ownership_reset(struct bfa_ioc_s *ioc)
401{
402
Krishna Gudipati11189202011-06-13 15:50:35 -0700403 if (bfa_ioc_is_cna(ioc)) {
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800404 bfa_ioc_sem_get(ioc->ioc_regs.ioc_usage_sem_reg);
Jing Huang53440262010-10-18 17:12:29 -0700405 writel(0, ioc->ioc_regs.ioc_usage_reg);
Krishna Gudipati5a0adae2011-06-24 20:22:56 -0700406 readl(ioc->ioc_regs.ioc_usage_sem_reg);
Maggie Zhangf7f738122010-12-09 19:08:43 -0800407 writel(1, ioc->ioc_regs.ioc_usage_sem_reg);
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800408 }
409
410 /*
411 * Read the hw sem reg to make sure that it is locked
412 * before we clear it. If it is not locked, writing 1
413 * will lock it instead of clearing it.
414 */
Jing Huang53440262010-10-18 17:12:29 -0700415 readl(ioc->ioc_regs.ioc_sem_reg);
Maggie Zhangf7f738122010-12-09 19:08:43 -0800416 writel(1, ioc->ioc_regs.ioc_sem_reg);
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800417}
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700418
Jing Huang45d7f0c2011-04-13 11:45:53 -0700419static bfa_boolean_t
420bfa_ioc_ct_sync_start(struct bfa_ioc_s *ioc)
421{
422 uint32_t r32 = readl(ioc->ioc_regs.ioc_fail_sync);
423 uint32_t sync_reqd = bfa_ioc_ct_get_sync_reqd(r32);
424
425 /*
426 * Driver load time. If the sync required bit for this PCI fn
427 * is set, it is due to an unclean exit by the driver for this
428 * PCI fn in the previous incarnation. Whoever comes here first
429 * should clean it up, no matter which PCI fn.
430 */
431
432 if (sync_reqd & bfa_ioc_ct_sync_pos(ioc)) {
433 writel(0, ioc->ioc_regs.ioc_fail_sync);
434 writel(1, ioc->ioc_regs.ioc_usage_reg);
435 writel(BFI_IOC_UNINIT, ioc->ioc_regs.ioc_fwstate);
436 writel(BFI_IOC_UNINIT, ioc->ioc_regs.alt_ioc_fwstate);
437 return BFA_TRUE;
438 }
439
440 return bfa_ioc_ct_sync_complete(ioc);
441}
442
Jing Huang8f4bfad2010-12-26 21:50:10 -0800443/*
Krishna Gudipatif1d584d2010-12-13 16:17:11 -0800444 * Synchronized IOC failure processing routines
445 */
446static void
447bfa_ioc_ct_sync_join(struct bfa_ioc_s *ioc)
448{
449 uint32_t r32 = readl(ioc->ioc_regs.ioc_fail_sync);
450 uint32_t sync_pos = bfa_ioc_ct_sync_reqd_pos(ioc);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700451
Krishna Gudipatif1d584d2010-12-13 16:17:11 -0800452 writel((r32 | sync_pos), ioc->ioc_regs.ioc_fail_sync);
453}
454
455static void
456bfa_ioc_ct_sync_leave(struct bfa_ioc_s *ioc)
457{
458 uint32_t r32 = readl(ioc->ioc_regs.ioc_fail_sync);
459 uint32_t sync_msk = bfa_ioc_ct_sync_reqd_pos(ioc) |
460 bfa_ioc_ct_sync_pos(ioc);
461
462 writel((r32 & ~sync_msk), ioc->ioc_regs.ioc_fail_sync);
463}
464
465static void
466bfa_ioc_ct_sync_ack(struct bfa_ioc_s *ioc)
467{
468 uint32_t r32 = readl(ioc->ioc_regs.ioc_fail_sync);
469
470 writel((r32 | bfa_ioc_ct_sync_pos(ioc)),
471 ioc->ioc_regs.ioc_fail_sync);
472}
473
474static bfa_boolean_t
475bfa_ioc_ct_sync_complete(struct bfa_ioc_s *ioc)
476{
477 uint32_t r32 = readl(ioc->ioc_regs.ioc_fail_sync);
478 uint32_t sync_reqd = bfa_ioc_ct_get_sync_reqd(r32);
479 uint32_t sync_ackd = bfa_ioc_ct_get_sync_ackd(r32);
480 uint32_t tmp_ackd;
481
482 if (sync_ackd == 0)
483 return BFA_TRUE;
484
Jing Huang8f4bfad2010-12-26 21:50:10 -0800485 /*
Krishna Gudipatif1d584d2010-12-13 16:17:11 -0800486 * The check below is to see whether any other PCI fn
487 * has reinitialized the ASIC (reset sync_ackd bits)
488 * and failed again while this IOC was waiting for hw
489 * semaphore (in bfa_iocpf_sm_semwait()).
490 */
491 tmp_ackd = sync_ackd;
492 if ((sync_reqd & bfa_ioc_ct_sync_pos(ioc)) &&
493 !(sync_ackd & bfa_ioc_ct_sync_pos(ioc)))
494 sync_ackd |= bfa_ioc_ct_sync_pos(ioc);
495
496 if (sync_reqd == sync_ackd) {
497 writel(bfa_ioc_ct_clear_sync_ackd(r32),
498 ioc->ioc_regs.ioc_fail_sync);
499 writel(BFI_IOC_FAIL, ioc->ioc_regs.ioc_fwstate);
500 writel(BFI_IOC_FAIL, ioc->ioc_regs.alt_ioc_fwstate);
501 return BFA_TRUE;
502 }
503
Jing Huang8f4bfad2010-12-26 21:50:10 -0800504 /*
Krishna Gudipatif1d584d2010-12-13 16:17:11 -0800505 * If another PCI fn reinitialized and failed again while
506 * this IOC was waiting for hw sem, the sync_ackd bit for
507 * this IOC need to be set again to allow reinitialization.
508 */
509 if (tmp_ackd != sync_ackd)
510 writel((r32 | sync_ackd), ioc->ioc_regs.ioc_fail_sync);
511
512 return BFA_FALSE;
513}
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700514
Krishna Gudipati11189202011-06-13 15:50:35 -0700515/**
516 * Called from bfa_ioc_attach() to map asic specific calls.
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700517 */
Krishna Gudipati11189202011-06-13 15:50:35 -0700518static void
519bfa_ioc_set_ctx_hwif(struct bfa_ioc_s *ioc, struct bfa_ioc_hwif_s *hwif)
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700520{
Krishna Gudipati11189202011-06-13 15:50:35 -0700521 hwif->ioc_firmware_lock = bfa_ioc_ct_firmware_lock;
522 hwif->ioc_firmware_unlock = bfa_ioc_ct_firmware_unlock;
523 hwif->ioc_notify_fail = bfa_ioc_ct_notify_fail;
524 hwif->ioc_ownership_reset = bfa_ioc_ct_ownership_reset;
525 hwif->ioc_sync_start = bfa_ioc_ct_sync_start;
526 hwif->ioc_sync_join = bfa_ioc_ct_sync_join;
527 hwif->ioc_sync_leave = bfa_ioc_ct_sync_leave;
528 hwif->ioc_sync_ack = bfa_ioc_ct_sync_ack;
529 hwif->ioc_sync_complete = bfa_ioc_ct_sync_complete;
530}
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700531
Krishna Gudipati11189202011-06-13 15:50:35 -0700532/**
533 * Called from bfa_ioc_attach() to map asic specific calls.
534 */
535void
536bfa_ioc_set_ct_hwif(struct bfa_ioc_s *ioc)
537{
538 bfa_ioc_set_ctx_hwif(ioc, &hwif_ct);
539
540 hwif_ct.ioc_pll_init = bfa_ioc_ct_pll_init;
541 hwif_ct.ioc_reg_init = bfa_ioc_ct_reg_init;
542 hwif_ct.ioc_map_port = bfa_ioc_ct_map_port;
543 hwif_ct.ioc_isr_mode_set = bfa_ioc_ct_isr_mode_set;
544 ioc->ioc_hwif = &hwif_ct;
545}
546
547/**
548 * Called from bfa_ioc_attach() to map asic specific calls.
549 */
550void
551bfa_ioc_set_ct2_hwif(struct bfa_ioc_s *ioc)
552{
553 bfa_ioc_set_ctx_hwif(ioc, &hwif_ct2);
554
555 hwif_ct2.ioc_pll_init = bfa_ioc_ct2_pll_init;
556 hwif_ct2.ioc_reg_init = bfa_ioc_ct2_reg_init;
557 hwif_ct2.ioc_map_port = bfa_ioc_ct2_map_port;
Krishna Gudipati8b070b42011-06-13 15:52:40 -0700558 hwif_ct2.ioc_lpu_read_stat = bfa_ioc_ct2_lpu_read_stat;
Krishna Gudipati11189202011-06-13 15:50:35 -0700559 hwif_ct2.ioc_isr_mode_set = NULL;
560 ioc->ioc_hwif = &hwif_ct2;
561}
562
563/*
Krishna Gudipati3fd45982011-06-24 20:24:08 -0700564 * Workaround for MSI-X resource allocation for catapult-2 with no asic block
Krishna Gudipati11189202011-06-13 15:50:35 -0700565 */
Krishna Gudipati3fd45982011-06-24 20:24:08 -0700566#define HOSTFN_MSIX_DEFAULT 64
Krishna Gudipati10a07372011-06-24 20:23:38 -0700567#define HOSTFN_MSIX_VT_INDEX_MBOX_ERR 0x30138
Krishna Gudipati11189202011-06-13 15:50:35 -0700568#define HOSTFN_MSIX_VT_OFST_NUMVT 0x3013c
569#define __MSIX_VT_NUMVT__MK 0x003ff800
570#define __MSIX_VT_NUMVT__SH 11
571#define __MSIX_VT_NUMVT_(_v) ((_v) << __MSIX_VT_NUMVT__SH)
Krishna Gudipati10a07372011-06-24 20:23:38 -0700572#define __MSIX_VT_OFST_ 0x000007ff
Krishna Gudipati11189202011-06-13 15:50:35 -0700573void
574bfa_ioc_ct2_poweron(struct bfa_ioc_s *ioc)
575{
576 void __iomem *rb = ioc->pcidev.pci_bar_kva;
577 u32 r32;
578
579 r32 = readl(rb + HOSTFN_MSIX_VT_OFST_NUMVT);
Krishna Gudipati10a07372011-06-24 20:23:38 -0700580 if (r32 & __MSIX_VT_NUMVT__MK) {
581 writel(r32 & __MSIX_VT_OFST_,
582 rb + HOSTFN_MSIX_VT_INDEX_MBOX_ERR);
Krishna Gudipati11189202011-06-13 15:50:35 -0700583 return;
Krishna Gudipati10a07372011-06-24 20:23:38 -0700584 }
Krishna Gudipati11189202011-06-13 15:50:35 -0700585
586 writel(__MSIX_VT_NUMVT_(HOSTFN_MSIX_DEFAULT - 1) |
587 HOSTFN_MSIX_DEFAULT * bfa_ioc_pcifn(ioc),
588 rb + HOSTFN_MSIX_VT_OFST_NUMVT);
Krishna Gudipati10a07372011-06-24 20:23:38 -0700589 writel(HOSTFN_MSIX_DEFAULT * bfa_ioc_pcifn(ioc),
590 rb + HOSTFN_MSIX_VT_INDEX_MBOX_ERR);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700591}
592
593bfa_status_t
Krishna Gudipati11189202011-06-13 15:50:35 -0700594bfa_ioc_ct_pll_init(void __iomem *rb, enum bfi_asic_mode mode)
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700595{
596 u32 pll_sclk, pll_fclk, r32;
Krishna Gudipati11189202011-06-13 15:50:35 -0700597 bfa_boolean_t fcmode = (mode == BFI_ASIC_MODE_FC);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700598
Krishna Gudipati11189202011-06-13 15:50:35 -0700599 pll_sclk = __APP_PLL_SCLK_LRESETN | __APP_PLL_SCLK_ENARST |
600 __APP_PLL_SCLK_RSEL200500 | __APP_PLL_SCLK_P0_1(3U) |
601 __APP_PLL_SCLK_JITLMT0_1(3U) |
602 __APP_PLL_SCLK_CNTLMT0_1(1U);
603 pll_fclk = __APP_PLL_LCLK_LRESETN | __APP_PLL_LCLK_ENARST |
604 __APP_PLL_LCLK_RSEL200500 | __APP_PLL_LCLK_P0_1(3U) |
605 __APP_PLL_LCLK_JITLMT0_1(3U) |
606 __APP_PLL_LCLK_CNTLMT0_1(1U);
607
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700608 if (fcmode) {
Jing Huang53440262010-10-18 17:12:29 -0700609 writel(0, (rb + OP_MODE));
610 writel(__APP_EMS_CMLCKSEL | __APP_EMS_REFCKBUFEN2 |
611 __APP_EMS_CHANNEL_SEL, (rb + ETH_MAC_SER_REG));
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700612 } else {
Jing Huang53440262010-10-18 17:12:29 -0700613 writel(__GLOBAL_FCOE_MODE, (rb + OP_MODE));
614 writel(__APP_EMS_REFCKBUFEN1, (rb + ETH_MAC_SER_REG));
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700615 }
Jing Huang53440262010-10-18 17:12:29 -0700616 writel(BFI_IOC_UNINIT, (rb + BFA_IOC0_STATE_REG));
617 writel(BFI_IOC_UNINIT, (rb + BFA_IOC1_STATE_REG));
618 writel(0xffffffffU, (rb + HOSTFN0_INT_MSK));
619 writel(0xffffffffU, (rb + HOSTFN1_INT_MSK));
620 writel(0xffffffffU, (rb + HOSTFN0_INT_STATUS));
621 writel(0xffffffffU, (rb + HOSTFN1_INT_STATUS));
622 writel(0xffffffffU, (rb + HOSTFN0_INT_MSK));
623 writel(0xffffffffU, (rb + HOSTFN1_INT_MSK));
Krishna Gudipati11189202011-06-13 15:50:35 -0700624 writel(pll_sclk | __APP_PLL_SCLK_LOGIC_SOFT_RESET,
625 rb + APP_PLL_SCLK_CTL_REG);
626 writel(pll_fclk | __APP_PLL_LCLK_LOGIC_SOFT_RESET,
627 rb + APP_PLL_LCLK_CTL_REG);
628 writel(pll_sclk | __APP_PLL_SCLK_LOGIC_SOFT_RESET |
629 __APP_PLL_SCLK_ENABLE, rb + APP_PLL_SCLK_CTL_REG);
630 writel(pll_fclk | __APP_PLL_LCLK_LOGIC_SOFT_RESET |
631 __APP_PLL_LCLK_ENABLE, rb + APP_PLL_LCLK_CTL_REG);
Jing Huang53440262010-10-18 17:12:29 -0700632 readl(rb + HOSTFN0_INT_MSK);
Jing Huang6a18b162010-10-18 17:08:54 -0700633 udelay(2000);
Jing Huang53440262010-10-18 17:12:29 -0700634 writel(0xffffffffU, (rb + HOSTFN0_INT_STATUS));
635 writel(0xffffffffU, (rb + HOSTFN1_INT_STATUS));
Krishna Gudipati11189202011-06-13 15:50:35 -0700636 writel(pll_sclk | __APP_PLL_SCLK_ENABLE, rb + APP_PLL_SCLK_CTL_REG);
637 writel(pll_fclk | __APP_PLL_LCLK_ENABLE, rb + APP_PLL_LCLK_CTL_REG);
638
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700639 if (!fcmode) {
Jing Huang53440262010-10-18 17:12:29 -0700640 writel(__PMM_1T_RESET_P, (rb + PMM_1T_RESET_REG_P0));
641 writel(__PMM_1T_RESET_P, (rb + PMM_1T_RESET_REG_P1));
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700642 }
Jing Huang53440262010-10-18 17:12:29 -0700643 r32 = readl((rb + PSS_CTL_REG));
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700644 r32 &= ~__PSS_LMEM_RESET;
Jing Huang53440262010-10-18 17:12:29 -0700645 writel(r32, (rb + PSS_CTL_REG));
Jing Huang6a18b162010-10-18 17:08:54 -0700646 udelay(1000);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700647 if (!fcmode) {
Jing Huang53440262010-10-18 17:12:29 -0700648 writel(0, (rb + PMM_1T_RESET_REG_P0));
649 writel(0, (rb + PMM_1T_RESET_REG_P1));
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700650 }
651
Jing Huang53440262010-10-18 17:12:29 -0700652 writel(__EDRAM_BISTR_START, (rb + MBIST_CTL_REG));
Jing Huang6a18b162010-10-18 17:08:54 -0700653 udelay(1000);
Jing Huang53440262010-10-18 17:12:29 -0700654 r32 = readl((rb + MBIST_STAT_REG));
655 writel(0, (rb + MBIST_CTL_REG));
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700656 return BFA_STATUS_OK;
657}
Krishna Gudipati11189202011-06-13 15:50:35 -0700658
Krishna Gudipati11189202011-06-13 15:50:35 -0700659static void
Krishna Gudipati10a07372011-06-24 20:23:38 -0700660bfa_ioc_ct2_sclk_init(void __iomem *rb)
Krishna Gudipati11189202011-06-13 15:50:35 -0700661{
662 u32 r32;
663
664 /*
665 * put s_clk PLL and PLL FSM in reset
666 */
667 r32 = readl((rb + CT2_APP_PLL_SCLK_CTL_REG));
668 r32 &= ~(__APP_PLL_SCLK_ENABLE | __APP_PLL_SCLK_LRESETN);
669 r32 |= (__APP_PLL_SCLK_ENARST | __APP_PLL_SCLK_BYPASS |
670 __APP_PLL_SCLK_LOGIC_SOFT_RESET);
671 writel(r32, (rb + CT2_APP_PLL_SCLK_CTL_REG));
672
673 /*
Krishna Gudipati10a07372011-06-24 20:23:38 -0700674 * Ignore mode and program for the max clock (which is FC16)
675 * Firmware/NFC will do the PLL init appropiately
Krishna Gudipati11189202011-06-13 15:50:35 -0700676 */
677 r32 = readl((rb + CT2_APP_PLL_SCLK_CTL_REG));
678 r32 &= ~(__APP_PLL_SCLK_REFCLK_SEL | __APP_PLL_SCLK_CLK_DIV2);
Krishna Gudipati10a07372011-06-24 20:23:38 -0700679 writel(r32, (rb + CT2_APP_PLL_SCLK_CTL_REG));
Krishna Gudipati11189202011-06-13 15:50:35 -0700680
681 /*
Krishna Gudipati775c7742011-06-13 15:52:12 -0700682 * while doing PLL init dont clock gate ethernet subsystem
Krishna Gudipati11189202011-06-13 15:50:35 -0700683 */
Krishna Gudipati775c7742011-06-13 15:52:12 -0700684 r32 = readl((rb + CT2_CHIP_MISC_PRG));
685 writel(r32 | __ETH_CLK_ENABLE_PORT0, (rb + CT2_CHIP_MISC_PRG));
Krishna Gudipati11189202011-06-13 15:50:35 -0700686
Krishna Gudipati775c7742011-06-13 15:52:12 -0700687 r32 = readl((rb + CT2_PCIE_MISC_REG));
688 writel(r32 | __ETH_CLK_ENABLE_PORT1, (rb + CT2_PCIE_MISC_REG));
Krishna Gudipati11189202011-06-13 15:50:35 -0700689
690 /*
691 * set sclk value
692 */
693 r32 = readl((rb + CT2_APP_PLL_SCLK_CTL_REG));
694 r32 &= (__P_SCLK_PLL_LOCK | __APP_PLL_SCLK_REFCLK_SEL |
695 __APP_PLL_SCLK_CLK_DIV2);
696 writel(r32 | 0x1061731b, (rb + CT2_APP_PLL_SCLK_CTL_REG));
697
698 /*
699 * poll for s_clk lock or delay 1ms
700 */
701 udelay(1000);
Krishna Gudipati11189202011-06-13 15:50:35 -0700702}
703
704static void
Krishna Gudipati10a07372011-06-24 20:23:38 -0700705bfa_ioc_ct2_lclk_init(void __iomem *rb)
Krishna Gudipati11189202011-06-13 15:50:35 -0700706{
707 u32 r32;
708
709 /*
710 * put l_clk PLL and PLL FSM in reset
711 */
712 r32 = readl((rb + CT2_APP_PLL_LCLK_CTL_REG));
713 r32 &= ~(__APP_PLL_LCLK_ENABLE | __APP_PLL_LCLK_LRESETN);
714 r32 |= (__APP_PLL_LCLK_ENARST | __APP_PLL_LCLK_BYPASS |
715 __APP_PLL_LCLK_LOGIC_SOFT_RESET);
716 writel(r32, (rb + CT2_APP_PLL_LCLK_CTL_REG));
717
718 /*
Krishna Gudipati10a07372011-06-24 20:23:38 -0700719 * set LPU speed (set for FC16 which will work for other modes)
Krishna Gudipati11189202011-06-13 15:50:35 -0700720 */
721 r32 = readl((rb + CT2_CHIP_MISC_PRG));
Krishna Gudipati10a07372011-06-24 20:23:38 -0700722 writel(r32, (rb + CT2_CHIP_MISC_PRG));
Krishna Gudipati11189202011-06-13 15:50:35 -0700723
724 /*
Krishna Gudipati10a07372011-06-24 20:23:38 -0700725 * set LPU half speed (set for FC16 which will work for other modes)
Krishna Gudipati11189202011-06-13 15:50:35 -0700726 */
727 r32 = readl((rb + CT2_APP_PLL_LCLK_CTL_REG));
Krishna Gudipati10a07372011-06-24 20:23:38 -0700728 writel(r32, (rb + CT2_APP_PLL_LCLK_CTL_REG));
Krishna Gudipati11189202011-06-13 15:50:35 -0700729
730 /*
Krishna Gudipati10a07372011-06-24 20:23:38 -0700731 * set lclk for mode (set for FC16)
Krishna Gudipati11189202011-06-13 15:50:35 -0700732 */
733 r32 = readl((rb + CT2_APP_PLL_LCLK_CTL_REG));
734 r32 &= (__P_LCLK_PLL_LOCK | __APP_LPUCLK_HALFSPEED);
Krishna Gudipati10a07372011-06-24 20:23:38 -0700735 r32 |= 0x20c1731b;
Krishna Gudipati11189202011-06-13 15:50:35 -0700736 writel(r32, (rb + CT2_APP_PLL_LCLK_CTL_REG));
737
738 /*
739 * poll for s_clk lock or delay 1ms
740 */
741 udelay(1000);
Krishna Gudipati10a07372011-06-24 20:23:38 -0700742}
743
744static void
745bfa_ioc_ct2_mem_init(void __iomem *rb)
746{
747 u32 r32;
748
749 r32 = readl((rb + PSS_CTL_REG));
750 r32 &= ~__PSS_LMEM_RESET;
751 writel(r32, (rb + PSS_CTL_REG));
752 udelay(1000);
753
754 writel(__EDRAM_BISTR_START, (rb + CT2_MBIST_CTL_REG));
755 udelay(1000);
756 writel(0, (rb + CT2_MBIST_CTL_REG));
757}
758
759void
760bfa_ioc_ct2_mac_reset(void __iomem *rb)
761{
762 u32 r32;
763
764 bfa_ioc_ct2_sclk_init(rb);
765 bfa_ioc_ct2_lclk_init(rb);
766
767 /*
768 * release soft reset on s_clk & l_clk
769 */
770 r32 = readl((rb + CT2_APP_PLL_SCLK_CTL_REG));
771 writel(r32 & ~__APP_PLL_SCLK_LOGIC_SOFT_RESET,
772 (rb + CT2_APP_PLL_SCLK_CTL_REG));
Krishna Gudipati11189202011-06-13 15:50:35 -0700773
774 /*
775 * release soft reset on s_clk & l_clk
776 */
777 r32 = readl((rb + CT2_APP_PLL_LCLK_CTL_REG));
778 writel(r32 & ~__APP_PLL_LCLK_LOGIC_SOFT_RESET,
779 (rb + CT2_APP_PLL_LCLK_CTL_REG));
Krishna Gudipati10a07372011-06-24 20:23:38 -0700780
781 /* put port0, port1 MAC & AHB in reset */
782 writel((__CSI_MAC_RESET | __CSI_MAC_AHB_RESET),
783 rb + CT2_CSI_MAC_CONTROL_REG(0));
784 writel((__CSI_MAC_RESET | __CSI_MAC_AHB_RESET),
785 rb + CT2_CSI_MAC_CONTROL_REG(1));
Krishna Gudipati11189202011-06-13 15:50:35 -0700786}
787
Krishna Gudipati10a07372011-06-24 20:23:38 -0700788#define CT2_NFC_MAX_DELAY 1000
Krishna Gudipatia6b963d2012-03-13 17:39:22 -0700789#define CT2_NFC_VER_VALID 0x143
790#define BFA_IOC_PLL_POLL 1000000
791
792static bfa_boolean_t
793bfa_ioc_ct2_nfc_halted(void __iomem *rb)
794{
795 u32 r32;
796
797 r32 = readl(rb + CT2_NFC_CSR_SET_REG);
798 if (r32 & __NFC_CONTROLLER_HALTED)
799 return BFA_TRUE;
800
801 return BFA_FALSE;
802}
803
804static void
805bfa_ioc_ct2_nfc_resume(void __iomem *rb)
806{
807 u32 r32;
808 int i;
809
810 writel(__HALT_NFC_CONTROLLER, rb + CT2_NFC_CSR_CLR_REG);
811 for (i = 0; i < CT2_NFC_MAX_DELAY; i++) {
812 r32 = readl(rb + CT2_NFC_CSR_SET_REG);
813 if (!(r32 & __NFC_CONTROLLER_HALTED))
814 return;
815 udelay(1000);
816 }
817 WARN_ON(1);
818}
819
Krishna Gudipati11189202011-06-13 15:50:35 -0700820bfa_status_t
821bfa_ioc_ct2_pll_init(void __iomem *rb, enum bfi_asic_mode mode)
822{
Krishna Gudipatia6b963d2012-03-13 17:39:22 -0700823 u32 wgn, r32, nfc_ver, i;
Krishna Gudipati8b070b42011-06-13 15:52:40 -0700824
Krishna Gudipati10a07372011-06-24 20:23:38 -0700825 wgn = readl(rb + CT2_WGN_STATUS);
Krishna Gudipatia6b963d2012-03-13 17:39:22 -0700826 nfc_ver = readl(rb + CT2_RSC_GPR15_REG);
827
828 if ((wgn == (__A2T_AHB_LOAD | __WGN_READY)) &&
829 (nfc_ver >= CT2_NFC_VER_VALID)) {
830 if (bfa_ioc_ct2_nfc_halted(rb))
831 bfa_ioc_ct2_nfc_resume(rb);
832
833 writel(__RESET_AND_START_SCLK_LCLK_PLLS,
834 rb + CT2_CSI_FW_CTL_SET_REG);
835
836 for (i = 0; i < BFA_IOC_PLL_POLL; i++) {
837 r32 = readl(rb + CT2_APP_PLL_LCLK_CTL_REG);
838 if (r32 & __RESET_AND_START_SCLK_LCLK_PLLS)
839 break;
840 }
841
842 WARN_ON(!(r32 & __RESET_AND_START_SCLK_LCLK_PLLS));
843
844 for (i = 0; i < BFA_IOC_PLL_POLL; i++) {
845 r32 = readl(rb + CT2_APP_PLL_LCLK_CTL_REG);
846 if (!(r32 & __RESET_AND_START_SCLK_LCLK_PLLS))
847 break;
848 }
849
850 WARN_ON(r32 & __RESET_AND_START_SCLK_LCLK_PLLS);
851 udelay(1000);
852
853 r32 = readl(rb + CT2_CSI_FW_CTL_REG);
854 WARN_ON(r32 & __RESET_AND_START_SCLK_LCLK_PLLS);
855 } else {
Krishna Gudipati10a07372011-06-24 20:23:38 -0700856 writel(__HALT_NFC_CONTROLLER, rb + CT2_NFC_CSR_SET_REG);
857 for (i = 0; i < CT2_NFC_MAX_DELAY; i++) {
858 r32 = readl(rb + CT2_NFC_CSR_SET_REG);
859 if (r32 & __NFC_CONTROLLER_HALTED)
860 break;
861 udelay(1000);
862 }
Krishna Gudipatia6b963d2012-03-13 17:39:22 -0700863
864 bfa_ioc_ct2_mac_reset(rb);
865 bfa_ioc_ct2_sclk_init(rb);
866 bfa_ioc_ct2_lclk_init(rb);
867
868 /*
869 * release soft reset on s_clk & l_clk
870 */
871 r32 = readl(rb + CT2_APP_PLL_SCLK_CTL_REG);
872 writel(r32 & ~__APP_PLL_SCLK_LOGIC_SOFT_RESET,
873 (rb + CT2_APP_PLL_SCLK_CTL_REG));
874
875 /*
876 * release soft reset on s_clk & l_clk
877 */
878 r32 = readl(rb + CT2_APP_PLL_LCLK_CTL_REG);
879 writel(r32 & ~__APP_PLL_LCLK_LOGIC_SOFT_RESET,
880 (rb + CT2_APP_PLL_LCLK_CTL_REG));
881 }
882
883 /*
884 * Announce flash device presence, if flash was corrupted.
885 */
886 if (wgn == (__WGN_READY | __GLBL_PF_VF_CFG_RDY)) {
887 r32 = readl(rb + PSS_GPIO_OUT_REG);
888 writel(r32 & ~1, (rb + PSS_GPIO_OUT_REG));
889 r32 = readl(rb + PSS_GPIO_OE_REG);
890 writel(r32 | 1, (rb + PSS_GPIO_OE_REG));
Krishna Gudipati10a07372011-06-24 20:23:38 -0700891 }
Krishna Gudipati8b070b42011-06-13 15:52:40 -0700892
Krishna Gudipati10a07372011-06-24 20:23:38 -0700893 /*
894 * Mask the interrupts and clear any
895 * pending interrupts.
896 */
897 writel(1, (rb + CT2_LPU0_HOSTFN_MBOX0_MSK));
898 writel(1, (rb + CT2_LPU1_HOSTFN_MBOX0_MSK));
Krishna Gudipati8b070b42011-06-13 15:52:40 -0700899
Krishna Gudipatia6b963d2012-03-13 17:39:22 -0700900 /* For first time initialization, no need to clear interrupts */
901 r32 = readl(rb + HOST_SEM5_REG);
902 if (r32 & 0x1) {
903 r32 = readl(rb + CT2_LPU0_HOSTFN_CMD_STAT);
904 if (r32 == 1) {
905 writel(1, rb + CT2_LPU0_HOSTFN_CMD_STAT);
906 readl((rb + CT2_LPU0_HOSTFN_CMD_STAT));
907 }
908 r32 = readl(rb + CT2_LPU1_HOSTFN_CMD_STAT);
909 if (r32 == 1) {
910 writel(1, rb + CT2_LPU1_HOSTFN_CMD_STAT);
911 readl(rb + CT2_LPU1_HOSTFN_CMD_STAT);
912 }
Krishna Gudipati8b070b42011-06-13 15:52:40 -0700913 }
Krishna Gudipati775c7742011-06-13 15:52:12 -0700914
Krishna Gudipati10a07372011-06-24 20:23:38 -0700915 bfa_ioc_ct2_mem_init(rb);
916
Krishna Gudipatia6b963d2012-03-13 17:39:22 -0700917 writel(BFI_IOC_UNINIT, rb + CT2_BFA_IOC0_STATE_REG);
918 writel(BFI_IOC_UNINIT, rb + CT2_BFA_IOC1_STATE_REG);
919
Krishna Gudipati11189202011-06-13 15:50:35 -0700920 return BFA_STATUS_OK;
921}