blob: 909945043850fbbeaf5b3a0699fd46e11186bd9e [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
Krishna Gudipatia36c61f2010-09-15 11:50:55 -070018#include "bfa_ioc.h"
19#include "bfi_cbreg.h"
20#include "bfa_defs.h"
Krishna Gudipati0a20de42010-03-05 19:34:20 -080021
22BFA_TRC_FILE(CNA, IOC_CB);
23
24/*
25 * forward declarations
26 */
Krishna Gudipati0a20de42010-03-05 19:34:20 -080027static bfa_boolean_t bfa_ioc_cb_firmware_lock(struct bfa_ioc_s *ioc);
28static void bfa_ioc_cb_firmware_unlock(struct bfa_ioc_s *ioc);
Krishna Gudipati0a20de42010-03-05 19:34:20 -080029static void bfa_ioc_cb_reg_init(struct bfa_ioc_s *ioc);
30static void bfa_ioc_cb_map_port(struct bfa_ioc_s *ioc);
31static void bfa_ioc_cb_isr_mode_set(struct bfa_ioc_s *ioc, bfa_boolean_t msix);
32static void bfa_ioc_cb_notify_hbfail(struct bfa_ioc_s *ioc);
33static void bfa_ioc_cb_ownership_reset(struct bfa_ioc_s *ioc);
34
Jing Huang293f82d2010-07-08 19:45:20 -070035struct bfa_ioc_hwif_s hwif_cb;
Krishna Gudipati0a20de42010-03-05 19:34:20 -080036
Jing Huang5fbe25c2010-10-18 17:17:23 -070037/*
Krishna Gudipati0a20de42010-03-05 19:34:20 -080038 * Called from bfa_ioc_attach() to map asic specific calls.
39 */
40void
41bfa_ioc_set_cb_hwif(struct bfa_ioc_s *ioc)
42{
Jing Huang293f82d2010-07-08 19:45:20 -070043 hwif_cb.ioc_pll_init = bfa_ioc_cb_pll_init;
44 hwif_cb.ioc_firmware_lock = bfa_ioc_cb_firmware_lock;
45 hwif_cb.ioc_firmware_unlock = bfa_ioc_cb_firmware_unlock;
46 hwif_cb.ioc_reg_init = bfa_ioc_cb_reg_init;
47 hwif_cb.ioc_map_port = bfa_ioc_cb_map_port;
48 hwif_cb.ioc_isr_mode_set = bfa_ioc_cb_isr_mode_set;
49 hwif_cb.ioc_notify_hbfail = bfa_ioc_cb_notify_hbfail;
50 hwif_cb.ioc_ownership_reset = bfa_ioc_cb_ownership_reset;
51
Krishna Gudipati0a20de42010-03-05 19:34:20 -080052 ioc->ioc_hwif = &hwif_cb;
53}
54
Jing Huang5fbe25c2010-10-18 17:17:23 -070055/*
Krishna Gudipati0a20de42010-03-05 19:34:20 -080056 * Return true if firmware of current driver matches the running firmware.
57 */
58static bfa_boolean_t
59bfa_ioc_cb_firmware_lock(struct bfa_ioc_s *ioc)
60{
61 return BFA_TRUE;
62}
63
64static void
65bfa_ioc_cb_firmware_unlock(struct bfa_ioc_s *ioc)
66{
67}
68
Jing Huang5fbe25c2010-10-18 17:17:23 -070069/*
Krishna Gudipati0a20de42010-03-05 19:34:20 -080070 * Notify other functions on HB failure.
71 */
72static void
73bfa_ioc_cb_notify_hbfail(struct bfa_ioc_s *ioc)
74{
Jing Huang53440262010-10-18 17:12:29 -070075 writel(__PSS_ERR_STATUS_SET, ioc->ioc_regs.err_set);
76 readl(ioc->ioc_regs.err_set);
Krishna Gudipati0a20de42010-03-05 19:34:20 -080077}
78
Jing Huang5fbe25c2010-10-18 17:17:23 -070079/*
Krishna Gudipati0a20de42010-03-05 19:34:20 -080080 * Host to LPU mailbox message addresses
81 */
Krishna Gudipatid1c61f82010-03-05 19:38:44 -080082static struct { u32 hfn_mbox, lpu_mbox, hfn_pgn; } iocreg_fnreg[] = {
Krishna Gudipati0a20de42010-03-05 19:34:20 -080083 { HOSTFN0_LPU_MBOX0_0, LPU_HOSTFN0_MBOX0_0, HOST_PAGE_NUM_FN0 },
84 { HOSTFN1_LPU_MBOX0_8, LPU_HOSTFN1_MBOX0_8, HOST_PAGE_NUM_FN1 }
85};
86
Jing Huang5fbe25c2010-10-18 17:17:23 -070087/*
Krishna Gudipati0a20de42010-03-05 19:34:20 -080088 * Host <-> LPU mailbox command/status registers
89 */
Krishna Gudipatid1c61f82010-03-05 19:38:44 -080090static struct { u32 hfn, lpu; } iocreg_mbcmd[] = {
Krishna Gudipatia36c61f2010-09-15 11:50:55 -070091
Krishna Gudipati0a20de42010-03-05 19:34:20 -080092 { HOSTFN0_LPU0_CMD_STAT, LPU0_HOSTFN0_CMD_STAT },
93 { HOSTFN1_LPU1_CMD_STAT, LPU1_HOSTFN1_CMD_STAT }
94};
95
96static void
97bfa_ioc_cb_reg_init(struct bfa_ioc_s *ioc)
98{
Jing Huang53440262010-10-18 17:12:29 -070099 void __iomem *rb;
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800100 int pcifn = bfa_ioc_pcifn(ioc);
101
102 rb = bfa_ioc_bar0(ioc);
103
104 ioc->ioc_regs.hfn_mbox = rb + iocreg_fnreg[pcifn].hfn_mbox;
105 ioc->ioc_regs.lpu_mbox = rb + iocreg_fnreg[pcifn].lpu_mbox;
106 ioc->ioc_regs.host_page_num_fn = rb + iocreg_fnreg[pcifn].hfn_pgn;
107
108 if (ioc->port_id == 0) {
109 ioc->ioc_regs.heartbeat = rb + BFA_IOC0_HBEAT_REG;
110 ioc->ioc_regs.ioc_fwstate = rb + BFA_IOC0_STATE_REG;
111 } else {
112 ioc->ioc_regs.heartbeat = (rb + BFA_IOC1_HBEAT_REG);
113 ioc->ioc_regs.ioc_fwstate = (rb + BFA_IOC1_STATE_REG);
114 }
115
Jing Huang5fbe25c2010-10-18 17:17:23 -0700116 /*
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800117 * Host <-> LPU mailbox command/status registers
118 */
119 ioc->ioc_regs.hfn_mbox_cmd = rb + iocreg_mbcmd[pcifn].hfn;
120 ioc->ioc_regs.lpu_mbox_cmd = rb + iocreg_mbcmd[pcifn].lpu;
121
122 /*
123 * PSS control registers
124 */
125 ioc->ioc_regs.pss_ctl_reg = (rb + PSS_CTL_REG);
Krishna Gudipati8b651b42010-03-05 19:34:44 -0800126 ioc->ioc_regs.pss_err_status_reg = (rb + PSS_ERR_STATUS_REG);
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800127 ioc->ioc_regs.app_pll_fast_ctl_reg = (rb + APP_PLL_400_CTL_REG);
128 ioc->ioc_regs.app_pll_slow_ctl_reg = (rb + APP_PLL_212_CTL_REG);
129
130 /*
131 * IOC semaphore registers and serialization
132 */
133 ioc->ioc_regs.ioc_sem_reg = (rb + HOST_SEM0_REG);
134 ioc->ioc_regs.ioc_init_sem_reg = (rb + HOST_SEM2_REG);
135
Jing Huang5fbe25c2010-10-18 17:17:23 -0700136 /*
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800137 * sram memory access
138 */
139 ioc->ioc_regs.smem_page_start = (rb + PSS_SMEM_PAGE_START);
140 ioc->ioc_regs.smem_pg0 = BFI_IOC_SMEM_PG0_CB;
141
142 /*
143 * err set reg : for notification of hb failure
144 */
145 ioc->ioc_regs.err_set = (rb + ERR_SET_REG);
146}
147
Jing Huang5fbe25c2010-10-18 17:17:23 -0700148/*
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800149 * Initialize IOC to port mapping.
150 */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700151
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800152static void
153bfa_ioc_cb_map_port(struct bfa_ioc_s *ioc)
154{
Jing Huang5fbe25c2010-10-18 17:17:23 -0700155 /*
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800156 * For crossbow, port id is same as pci function.
157 */
158 ioc->port_id = bfa_ioc_pcifn(ioc);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700159
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800160 bfa_trc(ioc, ioc->port_id);
161}
162
Jing Huang5fbe25c2010-10-18 17:17:23 -0700163/*
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800164 * Set interrupt mode for a function: INTX or MSIX
165 */
166static void
167bfa_ioc_cb_isr_mode_set(struct bfa_ioc_s *ioc, bfa_boolean_t msix)
168{
169}
170
Jing Huang5fbe25c2010-10-18 17:17:23 -0700171/*
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800172 * Cleanup hw semaphore and usecnt registers
173 */
174static void
175bfa_ioc_cb_ownership_reset(struct bfa_ioc_s *ioc)
176{
177
178 /*
179 * Read the hw sem reg to make sure that it is locked
180 * before we clear it. If it is not locked, writing 1
181 * will lock it instead of clearing it.
182 */
Jing Huang53440262010-10-18 17:12:29 -0700183 readl(ioc->ioc_regs.ioc_sem_reg);
Krishna Gudipati0a20de42010-03-05 19:34:20 -0800184 bfa_ioc_hw_sem_release(ioc);
185}
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700186
187
188
189bfa_status_t
Jing Huang53440262010-10-18 17:12:29 -0700190bfa_ioc_cb_pll_init(void __iomem *rb, bfa_boolean_t fcmode)
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700191{
192 u32 pll_sclk, pll_fclk;
193
194 pll_sclk = __APP_PLL_212_ENABLE | __APP_PLL_212_LRESETN |
195 __APP_PLL_212_P0_1(3U) |
196 __APP_PLL_212_JITLMT0_1(3U) |
197 __APP_PLL_212_CNTLMT0_1(3U);
198 pll_fclk = __APP_PLL_400_ENABLE | __APP_PLL_400_LRESETN |
199 __APP_PLL_400_RSEL200500 | __APP_PLL_400_P0_1(3U) |
200 __APP_PLL_400_JITLMT0_1(3U) |
201 __APP_PLL_400_CNTLMT0_1(3U);
Jing Huang53440262010-10-18 17:12:29 -0700202 writel(BFI_IOC_UNINIT, (rb + BFA_IOC0_STATE_REG));
203 writel(BFI_IOC_UNINIT, (rb + BFA_IOC1_STATE_REG));
204 writel(0xffffffffU, (rb + HOSTFN0_INT_MSK));
205 writel(0xffffffffU, (rb + HOSTFN1_INT_MSK));
206 writel(0xffffffffU, (rb + HOSTFN0_INT_STATUS));
207 writel(0xffffffffU, (rb + HOSTFN1_INT_STATUS));
208 writel(0xffffffffU, (rb + HOSTFN0_INT_MSK));
209 writel(0xffffffffU, (rb + HOSTFN1_INT_MSK));
210 writel(__APP_PLL_212_LOGIC_SOFT_RESET, rb + APP_PLL_212_CTL_REG);
211 writel(__APP_PLL_212_BYPASS | __APP_PLL_212_LOGIC_SOFT_RESET,
212 rb + APP_PLL_212_CTL_REG);
213 writel(__APP_PLL_400_LOGIC_SOFT_RESET, rb + APP_PLL_400_CTL_REG);
214 writel(__APP_PLL_400_BYPASS | __APP_PLL_400_LOGIC_SOFT_RESET,
215 rb + APP_PLL_400_CTL_REG);
Jing Huang6a18b162010-10-18 17:08:54 -0700216 udelay(2);
Jing Huang53440262010-10-18 17:12:29 -0700217 writel(__APP_PLL_212_LOGIC_SOFT_RESET, rb + APP_PLL_212_CTL_REG);
218 writel(__APP_PLL_400_LOGIC_SOFT_RESET, rb + APP_PLL_400_CTL_REG);
219 writel(pll_sclk | __APP_PLL_212_LOGIC_SOFT_RESET,
220 rb + APP_PLL_212_CTL_REG);
221 writel(pll_fclk | __APP_PLL_400_LOGIC_SOFT_RESET,
222 rb + APP_PLL_400_CTL_REG);
Jing Huang6a18b162010-10-18 17:08:54 -0700223 udelay(2000);
Jing Huang53440262010-10-18 17:12:29 -0700224 writel(0xffffffffU, (rb + HOSTFN0_INT_STATUS));
225 writel(0xffffffffU, (rb + HOSTFN1_INT_STATUS));
226 writel(pll_sclk, (rb + APP_PLL_212_CTL_REG));
227 writel(pll_fclk, (rb + APP_PLL_400_CTL_REG));
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700228
229 return BFA_STATUS_OK;
230}