diff options
author | Rasesh Mody <rmody@brocade.com> | 2011-08-02 08:36:06 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-08-03 06:24:39 -0400 |
commit | a960249083b1b968c58c65509dee228a57224092 (patch) | |
tree | 098169f7065f94cfa7e1c6d28892fb0c55831242 | |
parent | 80a3809db18b859dfd1eb9045e684d8123415709 (diff) |
bna: Consolidated HW Registers for Supported HWs
Change details:
- Introducing new file bfi_reg.h for consolidating all supported hardware
registers. This file completely replaces bfi_ctreg.h.
- Updated ioc code as per register definition change.
Signed-off-by: Rasesh Mody <rmody@brocade.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/bna/bfa_ioc.c | 2 | ||||
-rw-r--r-- | drivers/net/bna/bfa_ioc_ct.c | 78 | ||||
-rw-r--r-- | drivers/net/bna/bfi_reg.h | 452 | ||||
-rw-r--r-- | drivers/net/bna/bna_hw.h | 6 |
4 files changed, 497 insertions, 41 deletions
diff --git a/drivers/net/bna/bfa_ioc.c b/drivers/net/bna/bfa_ioc.c index 126b0aac9f94..3cdea65aee12 100644 --- a/drivers/net/bna/bfa_ioc.c +++ b/drivers/net/bna/bfa_ioc.c | |||
@@ -19,7 +19,7 @@ | |||
19 | #include "bfa_ioc.h" | 19 | #include "bfa_ioc.h" |
20 | #include "cna.h" | 20 | #include "cna.h" |
21 | #include "bfi.h" | 21 | #include "bfi.h" |
22 | #include "bfi_ctreg.h" | 22 | #include "bfi_reg.h" |
23 | #include "bfa_defs.h" | 23 | #include "bfa_defs.h" |
24 | 24 | ||
25 | /** | 25 | /** |
diff --git a/drivers/net/bna/bfa_ioc_ct.c b/drivers/net/bna/bfa_ioc_ct.c index 29b5fd0ca740..209f1f320343 100644 --- a/drivers/net/bna/bfa_ioc_ct.c +++ b/drivers/net/bna/bfa_ioc_ct.c | |||
@@ -19,7 +19,7 @@ | |||
19 | #include "bfa_ioc.h" | 19 | #include "bfa_ioc.h" |
20 | #include "cna.h" | 20 | #include "cna.h" |
21 | #include "bfi.h" | 21 | #include "bfi.h" |
22 | #include "bfi_ctreg.h" | 22 | #include "bfi_reg.h" |
23 | #include "bfa_defs.h" | 23 | #include "bfa_defs.h" |
24 | 24 | ||
25 | #define bfa_ioc_ct_sync_pos(__ioc) \ | 25 | #define bfa_ioc_ct_sync_pos(__ioc) \ |
@@ -172,7 +172,7 @@ bfa_ioc_ct_notify_fail(struct bfa_ioc *ioc) | |||
172 | readl(ioc->ioc_regs.ll_halt); | 172 | readl(ioc->ioc_regs.ll_halt); |
173 | readl(ioc->ioc_regs.alt_ll_halt); | 173 | readl(ioc->ioc_regs.alt_ll_halt); |
174 | } else { | 174 | } else { |
175 | writel(__PSS_ERR_STATUS_SET, ioc->ioc_regs.err_set); | 175 | writel(~0U, ioc->ioc_regs.err_set); |
176 | readl(ioc->ioc_regs.err_set); | 176 | readl(ioc->ioc_regs.err_set); |
177 | } | 177 | } |
178 | } | 178 | } |
@@ -190,21 +190,21 @@ static struct { u32 hfn_mbox, lpu_mbox, hfn_pgn; } iocreg_fnreg[] = { | |||
190 | /** | 190 | /** |
191 | * Host <-> LPU mailbox command/status registers - port 0 | 191 | * Host <-> LPU mailbox command/status registers - port 0 |
192 | */ | 192 | */ |
193 | static struct { u32 hfn, lpu; } iocreg_mbcmd_p0[] = { | 193 | static struct { u32 hfn, lpu; } ct_p0reg[] = { |
194 | { HOSTFN0_LPU0_MBOX0_CMD_STAT, LPU0_HOSTFN0_MBOX0_CMD_STAT }, | 194 | { HOSTFN0_LPU0_CMD_STAT, LPU0_HOSTFN0_CMD_STAT }, |
195 | { HOSTFN1_LPU0_MBOX0_CMD_STAT, LPU0_HOSTFN1_MBOX0_CMD_STAT }, | 195 | { HOSTFN1_LPU0_CMD_STAT, LPU0_HOSTFN1_CMD_STAT }, |
196 | { HOSTFN2_LPU0_MBOX0_CMD_STAT, LPU0_HOSTFN2_MBOX0_CMD_STAT }, | 196 | { HOSTFN2_LPU0_CMD_STAT, LPU0_HOSTFN2_CMD_STAT }, |
197 | { HOSTFN3_LPU0_MBOX0_CMD_STAT, LPU0_HOSTFN3_MBOX0_CMD_STAT } | 197 | { HOSTFN3_LPU0_CMD_STAT, LPU0_HOSTFN3_CMD_STAT } |
198 | }; | 198 | }; |
199 | 199 | ||
200 | /** | 200 | /** |
201 | * Host <-> LPU mailbox command/status registers - port 1 | 201 | * Host <-> LPU mailbox command/status registers - port 1 |
202 | */ | 202 | */ |
203 | static struct { u32 hfn, lpu; } iocreg_mbcmd_p1[] = { | 203 | static struct { u32 hfn, lpu; } ct_p1reg[] = { |
204 | { HOSTFN0_LPU1_MBOX0_CMD_STAT, LPU1_HOSTFN0_MBOX0_CMD_STAT }, | 204 | { HOSTFN0_LPU1_CMD_STAT, LPU1_HOSTFN0_CMD_STAT }, |
205 | { HOSTFN1_LPU1_MBOX0_CMD_STAT, LPU1_HOSTFN1_MBOX0_CMD_STAT }, | 205 | { HOSTFN1_LPU1_CMD_STAT, LPU1_HOSTFN1_CMD_STAT }, |
206 | { HOSTFN2_LPU1_MBOX0_CMD_STAT, LPU1_HOSTFN2_MBOX0_CMD_STAT }, | 206 | { HOSTFN2_LPU1_CMD_STAT, LPU1_HOSTFN2_CMD_STAT }, |
207 | { HOSTFN3_LPU1_MBOX0_CMD_STAT, LPU1_HOSTFN3_MBOX0_CMD_STAT } | 207 | { HOSTFN3_LPU1_CMD_STAT, LPU1_HOSTFN3_CMD_STAT } |
208 | }; | 208 | }; |
209 | 209 | ||
210 | static void | 210 | static void |
@@ -223,16 +223,16 @@ bfa_ioc_ct_reg_init(struct bfa_ioc *ioc) | |||
223 | ioc->ioc_regs.heartbeat = rb + BFA_IOC0_HBEAT_REG; | 223 | ioc->ioc_regs.heartbeat = rb + BFA_IOC0_HBEAT_REG; |
224 | ioc->ioc_regs.ioc_fwstate = rb + BFA_IOC0_STATE_REG; | 224 | ioc->ioc_regs.ioc_fwstate = rb + BFA_IOC0_STATE_REG; |
225 | ioc->ioc_regs.alt_ioc_fwstate = rb + BFA_IOC1_STATE_REG; | 225 | ioc->ioc_regs.alt_ioc_fwstate = rb + BFA_IOC1_STATE_REG; |
226 | ioc->ioc_regs.hfn_mbox_cmd = rb + iocreg_mbcmd_p0[pcifn].hfn; | 226 | ioc->ioc_regs.hfn_mbox_cmd = rb + ct_p0reg[pcifn].hfn; |
227 | ioc->ioc_regs.lpu_mbox_cmd = rb + iocreg_mbcmd_p0[pcifn].lpu; | 227 | ioc->ioc_regs.lpu_mbox_cmd = rb + ct_p0reg[pcifn].lpu; |
228 | ioc->ioc_regs.ll_halt = rb + FW_INIT_HALT_P0; | 228 | ioc->ioc_regs.ll_halt = rb + FW_INIT_HALT_P0; |
229 | ioc->ioc_regs.alt_ll_halt = rb + FW_INIT_HALT_P1; | 229 | ioc->ioc_regs.alt_ll_halt = rb + FW_INIT_HALT_P1; |
230 | } else { | 230 | } else { |
231 | ioc->ioc_regs.heartbeat = (rb + BFA_IOC1_HBEAT_REG); | 231 | ioc->ioc_regs.heartbeat = (rb + BFA_IOC1_HBEAT_REG); |
232 | ioc->ioc_regs.ioc_fwstate = (rb + BFA_IOC1_STATE_REG); | 232 | ioc->ioc_regs.ioc_fwstate = (rb + BFA_IOC1_STATE_REG); |
233 | ioc->ioc_regs.alt_ioc_fwstate = rb + BFA_IOC0_STATE_REG; | 233 | ioc->ioc_regs.alt_ioc_fwstate = rb + BFA_IOC0_STATE_REG; |
234 | ioc->ioc_regs.hfn_mbox_cmd = rb + iocreg_mbcmd_p1[pcifn].hfn; | 234 | ioc->ioc_regs.hfn_mbox_cmd = rb + ct_p1reg[pcifn].hfn; |
235 | ioc->ioc_regs.lpu_mbox_cmd = rb + iocreg_mbcmd_p1[pcifn].lpu; | 235 | ioc->ioc_regs.lpu_mbox_cmd = rb + ct_p1reg[pcifn].lpu; |
236 | ioc->ioc_regs.ll_halt = rb + FW_INIT_HALT_P1; | 236 | ioc->ioc_regs.ll_halt = rb + FW_INIT_HALT_P1; |
237 | ioc->ioc_regs.alt_ll_halt = rb + FW_INIT_HALT_P0; | 237 | ioc->ioc_regs.alt_ll_halt = rb + FW_INIT_HALT_P0; |
238 | } | 238 | } |
@@ -242,8 +242,8 @@ bfa_ioc_ct_reg_init(struct bfa_ioc *ioc) | |||
242 | */ | 242 | */ |
243 | ioc->ioc_regs.pss_ctl_reg = (rb + PSS_CTL_REG); | 243 | ioc->ioc_regs.pss_ctl_reg = (rb + PSS_CTL_REG); |
244 | ioc->ioc_regs.pss_err_status_reg = (rb + PSS_ERR_STATUS_REG); | 244 | ioc->ioc_regs.pss_err_status_reg = (rb + PSS_ERR_STATUS_REG); |
245 | ioc->ioc_regs.app_pll_fast_ctl_reg = (rb + APP_PLL_425_CTL_REG); | 245 | ioc->ioc_regs.app_pll_fast_ctl_reg = (rb + APP_PLL_LCLK_CTL_REG); |
246 | ioc->ioc_regs.app_pll_slow_ctl_reg = (rb + APP_PLL_312_CTL_REG); | 246 | ioc->ioc_regs.app_pll_slow_ctl_reg = (rb + APP_PLL_SCLK_CTL_REG); |
247 | 247 | ||
248 | /* | 248 | /* |
249 | * IOC semaphore registers and serialization | 249 | * IOC semaphore registers and serialization |
@@ -440,14 +440,15 @@ bfa_ioc_ct_pll_init(void __iomem *rb, bool fcmode) | |||
440 | { | 440 | { |
441 | u32 pll_sclk, pll_fclk, r32; | 441 | u32 pll_sclk, pll_fclk, r32; |
442 | 442 | ||
443 | pll_sclk = __APP_PLL_312_LRESETN | __APP_PLL_312_ENARST | | 443 | pll_sclk = __APP_PLL_SCLK_LRESETN | __APP_PLL_SCLK_ENARST | |
444 | __APP_PLL_312_RSEL200500 | __APP_PLL_312_P0_1(3U) | | 444 | __APP_PLL_SCLK_RSEL200500 | __APP_PLL_SCLK_P0_1(3U) | |
445 | __APP_PLL_312_JITLMT0_1(3U) | | 445 | __APP_PLL_SCLK_JITLMT0_1(3U) | |
446 | __APP_PLL_312_CNTLMT0_1(1U); | 446 | __APP_PLL_SCLK_CNTLMT0_1(1U); |
447 | pll_fclk = __APP_PLL_425_LRESETN | __APP_PLL_425_ENARST | | 447 | pll_fclk = __APP_PLL_LCLK_LRESETN | __APP_PLL_LCLK_ENARST | |
448 | __APP_PLL_425_RSEL200500 | __APP_PLL_425_P0_1(3U) | | 448 | __APP_PLL_LCLK_RSEL200500 | __APP_PLL_LCLK_P0_1(3U) | |
449 | __APP_PLL_425_JITLMT0_1(3U) | | 449 | __APP_PLL_LCLK_JITLMT0_1(3U) | |
450 | __APP_PLL_425_CNTLMT0_1(1U); | 450 | __APP_PLL_LCLK_CNTLMT0_1(1U); |
451 | |||
451 | if (fcmode) { | 452 | if (fcmode) { |
452 | writel(0, (rb + OP_MODE)); | 453 | writel(0, (rb + OP_MODE)); |
453 | writel(__APP_EMS_CMLCKSEL | | 454 | writel(__APP_EMS_CMLCKSEL | |
@@ -468,27 +469,28 @@ bfa_ioc_ct_pll_init(void __iomem *rb, bool fcmode) | |||
468 | writel(0xffffffffU, (rb + HOSTFN0_INT_MSK)); | 469 | writel(0xffffffffU, (rb + HOSTFN0_INT_MSK)); |
469 | writel(0xffffffffU, (rb + HOSTFN1_INT_MSK)); | 470 | writel(0xffffffffU, (rb + HOSTFN1_INT_MSK)); |
470 | writel(pll_sclk | | 471 | writel(pll_sclk | |
471 | __APP_PLL_312_LOGIC_SOFT_RESET, | 472 | __APP_PLL_SCLK_LOGIC_SOFT_RESET, |
472 | rb + APP_PLL_312_CTL_REG); | 473 | rb + APP_PLL_SCLK_CTL_REG); |
473 | writel(pll_fclk | | 474 | writel(pll_fclk | |
474 | __APP_PLL_425_LOGIC_SOFT_RESET, | 475 | __APP_PLL_LCLK_LOGIC_SOFT_RESET, |
475 | rb + APP_PLL_425_CTL_REG); | 476 | rb + APP_PLL_LCLK_CTL_REG); |
476 | writel(pll_sclk | | 477 | writel(pll_sclk | |
477 | __APP_PLL_312_LOGIC_SOFT_RESET | __APP_PLL_312_ENABLE, | 478 | __APP_PLL_SCLK_LOGIC_SOFT_RESET | __APP_PLL_SCLK_ENABLE, |
478 | rb + APP_PLL_312_CTL_REG); | 479 | rb + APP_PLL_SCLK_CTL_REG); |
479 | writel(pll_fclk | | 480 | writel(pll_fclk | |
480 | __APP_PLL_425_LOGIC_SOFT_RESET | __APP_PLL_425_ENABLE, | 481 | __APP_PLL_LCLK_LOGIC_SOFT_RESET | __APP_PLL_LCLK_ENABLE, |
481 | rb + APP_PLL_425_CTL_REG); | 482 | rb + APP_PLL_LCLK_CTL_REG); |
482 | readl(rb + HOSTFN0_INT_MSK); | 483 | readl(rb + HOSTFN0_INT_MSK); |
483 | udelay(2000); | 484 | udelay(2000); |
484 | writel(0xffffffffU, (rb + HOSTFN0_INT_STATUS)); | 485 | writel(0xffffffffU, (rb + HOSTFN0_INT_STATUS)); |
485 | writel(0xffffffffU, (rb + HOSTFN1_INT_STATUS)); | 486 | writel(0xffffffffU, (rb + HOSTFN1_INT_STATUS)); |
486 | writel(pll_sclk | | 487 | writel(pll_sclk | |
487 | __APP_PLL_312_ENABLE, | 488 | __APP_PLL_SCLK_ENABLE, |
488 | rb + APP_PLL_312_CTL_REG); | 489 | rb + APP_PLL_SCLK_CTL_REG); |
489 | writel(pll_fclk | | 490 | writel(pll_fclk | |
490 | __APP_PLL_425_ENABLE, | 491 | __APP_PLL_LCLK_ENABLE, |
491 | rb + APP_PLL_425_CTL_REG); | 492 | rb + APP_PLL_LCLK_CTL_REG); |
493 | |||
492 | if (!fcmode) { | 494 | if (!fcmode) { |
493 | writel(__PMM_1T_RESET_P, (rb + PMM_1T_RESET_REG_P0)); | 495 | writel(__PMM_1T_RESET_P, (rb + PMM_1T_RESET_REG_P0)); |
494 | writel(__PMM_1T_RESET_P, (rb + PMM_1T_RESET_REG_P1)); | 496 | writel(__PMM_1T_RESET_P, (rb + PMM_1T_RESET_REG_P1)); |
diff --git a/drivers/net/bna/bfi_reg.h b/drivers/net/bna/bfi_reg.h new file mode 100644 index 000000000000..efacff3ab51d --- /dev/null +++ b/drivers/net/bna/bfi_reg.h | |||
@@ -0,0 +1,452 @@ | |||
1 | /* | ||
2 | * Linux network driver for Brocade Converged Network Adapter. | ||
3 | * | ||
4 | * This program is free software; you can redistribute it and/or modify it | ||
5 | * under the terms of the GNU General Public License (GPL) Version 2 as | ||
6 | * published by the Free Software Foundation | ||
7 | * | ||
8 | * This program is distributed in the hope that it will be useful, but | ||
9 | * WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
11 | * General Public License for more details. | ||
12 | */ | ||
13 | /* | ||
14 | * Copyright (c) 2005-2011 Brocade Communications Systems, Inc. | ||
15 | * All rights reserved | ||
16 | * www.brocade.com | ||
17 | */ | ||
18 | |||
19 | /* | ||
20 | * bfi_reg.h ASIC register defines for all Brocade adapter ASICs | ||
21 | */ | ||
22 | |||
23 | #ifndef __BFI_REG_H__ | ||
24 | #define __BFI_REG_H__ | ||
25 | |||
26 | #define HOSTFN0_INT_STATUS 0x00014000 /* cb/ct */ | ||
27 | #define HOSTFN1_INT_STATUS 0x00014100 /* cb/ct */ | ||
28 | #define HOSTFN2_INT_STATUS 0x00014300 /* ct */ | ||
29 | #define HOSTFN3_INT_STATUS 0x00014400 /* ct */ | ||
30 | #define HOSTFN0_INT_MSK 0x00014004 /* cb/ct */ | ||
31 | #define HOSTFN1_INT_MSK 0x00014104 /* cb/ct */ | ||
32 | #define HOSTFN2_INT_MSK 0x00014304 /* ct */ | ||
33 | #define HOSTFN3_INT_MSK 0x00014404 /* ct */ | ||
34 | |||
35 | #define HOST_PAGE_NUM_FN0 0x00014008 /* cb/ct */ | ||
36 | #define HOST_PAGE_NUM_FN1 0x00014108 /* cb/ct */ | ||
37 | #define HOST_PAGE_NUM_FN2 0x00014308 /* ct */ | ||
38 | #define HOST_PAGE_NUM_FN3 0x00014408 /* ct */ | ||
39 | |||
40 | #define APP_PLL_LCLK_CTL_REG 0x00014204 /* cb/ct */ | ||
41 | #define __P_LCLK_PLL_LOCK 0x80000000 | ||
42 | #define __APP_PLL_LCLK_SRAM_USE_100MHZ 0x00100000 | ||
43 | #define __APP_PLL_LCLK_RESET_TIMER_MK 0x000e0000 | ||
44 | #define __APP_PLL_LCLK_RESET_TIMER_SH 17 | ||
45 | #define __APP_PLL_LCLK_RESET_TIMER(_v) ((_v) << __APP_PLL_LCLK_RESET_TIMER_SH) | ||
46 | #define __APP_PLL_LCLK_LOGIC_SOFT_RESET 0x00010000 | ||
47 | #define __APP_PLL_LCLK_CNTLMT0_1_MK 0x0000c000 | ||
48 | #define __APP_PLL_LCLK_CNTLMT0_1_SH 14 | ||
49 | #define __APP_PLL_LCLK_CNTLMT0_1(_v) ((_v) << __APP_PLL_LCLK_CNTLMT0_1_SH) | ||
50 | #define __APP_PLL_LCLK_JITLMT0_1_MK 0x00003000 | ||
51 | #define __APP_PLL_LCLK_JITLMT0_1_SH 12 | ||
52 | #define __APP_PLL_LCLK_JITLMT0_1(_v) ((_v) << __APP_PLL_LCLK_JITLMT0_1_SH) | ||
53 | #define __APP_PLL_LCLK_HREF 0x00000800 | ||
54 | #define __APP_PLL_LCLK_HDIV 0x00000400 | ||
55 | #define __APP_PLL_LCLK_P0_1_MK 0x00000300 | ||
56 | #define __APP_PLL_LCLK_P0_1_SH 8 | ||
57 | #define __APP_PLL_LCLK_P0_1(_v) ((_v) << __APP_PLL_LCLK_P0_1_SH) | ||
58 | #define __APP_PLL_LCLK_Z0_2_MK 0x000000e0 | ||
59 | #define __APP_PLL_LCLK_Z0_2_SH 5 | ||
60 | #define __APP_PLL_LCLK_Z0_2(_v) ((_v) << __APP_PLL_LCLK_Z0_2_SH) | ||
61 | #define __APP_PLL_LCLK_RSEL200500 0x00000010 | ||
62 | #define __APP_PLL_LCLK_ENARST 0x00000008 | ||
63 | #define __APP_PLL_LCLK_BYPASS 0x00000004 | ||
64 | #define __APP_PLL_LCLK_LRESETN 0x00000002 | ||
65 | #define __APP_PLL_LCLK_ENABLE 0x00000001 | ||
66 | #define APP_PLL_SCLK_CTL_REG 0x00014208 /* cb/ct */ | ||
67 | #define __P_SCLK_PLL_LOCK 0x80000000 | ||
68 | #define __APP_PLL_SCLK_RESET_TIMER_MK 0x000e0000 | ||
69 | #define __APP_PLL_SCLK_RESET_TIMER_SH 17 | ||
70 | #define __APP_PLL_SCLK_RESET_TIMER(_v) ((_v) << __APP_PLL_SCLK_RESET_TIMER_SH) | ||
71 | #define __APP_PLL_SCLK_LOGIC_SOFT_RESET 0x00010000 | ||
72 | #define __APP_PLL_SCLK_CNTLMT0_1_MK 0x0000c000 | ||
73 | #define __APP_PLL_SCLK_CNTLMT0_1_SH 14 | ||
74 | #define __APP_PLL_SCLK_CNTLMT0_1(_v) ((_v) << __APP_PLL_SCLK_CNTLMT0_1_SH) | ||
75 | #define __APP_PLL_SCLK_JITLMT0_1_MK 0x00003000 | ||
76 | #define __APP_PLL_SCLK_JITLMT0_1_SH 12 | ||
77 | #define __APP_PLL_SCLK_JITLMT0_1(_v) ((_v) << __APP_PLL_SCLK_JITLMT0_1_SH) | ||
78 | #define __APP_PLL_SCLK_HREF 0x00000800 | ||
79 | #define __APP_PLL_SCLK_HDIV 0x00000400 | ||
80 | #define __APP_PLL_SCLK_P0_1_MK 0x00000300 | ||
81 | #define __APP_PLL_SCLK_P0_1_SH 8 | ||
82 | #define __APP_PLL_SCLK_P0_1(_v) ((_v) << __APP_PLL_SCLK_P0_1_SH) | ||
83 | #define __APP_PLL_SCLK_Z0_2_MK 0x000000e0 | ||
84 | #define __APP_PLL_SCLK_Z0_2_SH 5 | ||
85 | #define __APP_PLL_SCLK_Z0_2(_v) ((_v) << __APP_PLL_SCLK_Z0_2_SH) | ||
86 | #define __APP_PLL_SCLK_RSEL200500 0x00000010 | ||
87 | #define __APP_PLL_SCLK_ENARST 0x00000008 | ||
88 | #define __APP_PLL_SCLK_BYPASS 0x00000004 | ||
89 | #define __APP_PLL_SCLK_LRESETN 0x00000002 | ||
90 | #define __APP_PLL_SCLK_ENABLE 0x00000001 | ||
91 | #define __ENABLE_MAC_AHB_1 0x00800000 /* ct */ | ||
92 | #define __ENABLE_MAC_AHB_0 0x00400000 /* ct */ | ||
93 | #define __ENABLE_MAC_1 0x00200000 /* ct */ | ||
94 | #define __ENABLE_MAC_0 0x00100000 /* ct */ | ||
95 | |||
96 | #define HOST_SEM0_REG 0x00014230 /* cb/ct */ | ||
97 | #define HOST_SEM1_REG 0x00014234 /* cb/ct */ | ||
98 | #define HOST_SEM2_REG 0x00014238 /* cb/ct */ | ||
99 | #define HOST_SEM3_REG 0x0001423c /* cb/ct */ | ||
100 | #define HOST_SEM4_REG 0x00014610 /* cb/ct */ | ||
101 | #define HOST_SEM5_REG 0x00014614 /* cb/ct */ | ||
102 | #define HOST_SEM6_REG 0x00014618 /* cb/ct */ | ||
103 | #define HOST_SEM7_REG 0x0001461c /* cb/ct */ | ||
104 | #define HOST_SEM0_INFO_REG 0x00014240 /* cb/ct */ | ||
105 | #define HOST_SEM1_INFO_REG 0x00014244 /* cb/ct */ | ||
106 | #define HOST_SEM2_INFO_REG 0x00014248 /* cb/ct */ | ||
107 | #define HOST_SEM3_INFO_REG 0x0001424c /* cb/ct */ | ||
108 | #define HOST_SEM4_INFO_REG 0x00014620 /* cb/ct */ | ||
109 | #define HOST_SEM5_INFO_REG 0x00014624 /* cb/ct */ | ||
110 | #define HOST_SEM6_INFO_REG 0x00014628 /* cb/ct */ | ||
111 | #define HOST_SEM7_INFO_REG 0x0001462c /* cb/ct */ | ||
112 | |||
113 | #define HOSTFN0_LPU0_CMD_STAT 0x00019000 /* cb/ct */ | ||
114 | #define HOSTFN0_LPU1_CMD_STAT 0x00019004 /* cb/ct */ | ||
115 | #define HOSTFN1_LPU0_CMD_STAT 0x00019010 /* cb/ct */ | ||
116 | #define HOSTFN1_LPU1_CMD_STAT 0x00019014 /* cb/ct */ | ||
117 | #define HOSTFN2_LPU0_CMD_STAT 0x00019150 /* ct */ | ||
118 | #define HOSTFN2_LPU1_CMD_STAT 0x00019154 /* ct */ | ||
119 | #define HOSTFN3_LPU0_CMD_STAT 0x00019160 /* ct */ | ||
120 | #define HOSTFN3_LPU1_CMD_STAT 0x00019164 /* ct */ | ||
121 | #define LPU0_HOSTFN0_CMD_STAT 0x00019008 /* cb/ct */ | ||
122 | #define LPU1_HOSTFN0_CMD_STAT 0x0001900c /* cb/ct */ | ||
123 | #define LPU0_HOSTFN1_CMD_STAT 0x00019018 /* cb/ct */ | ||
124 | #define LPU1_HOSTFN1_CMD_STAT 0x0001901c /* cb/ct */ | ||
125 | #define LPU0_HOSTFN2_CMD_STAT 0x00019158 /* ct */ | ||
126 | #define LPU1_HOSTFN2_CMD_STAT 0x0001915c /* ct */ | ||
127 | #define LPU0_HOSTFN3_CMD_STAT 0x00019168 /* ct */ | ||
128 | #define LPU1_HOSTFN3_CMD_STAT 0x0001916c /* ct */ | ||
129 | |||
130 | #define PSS_CTL_REG 0x00018800 /* cb/ct */ | ||
131 | #define __PSS_I2C_CLK_DIV_MK 0x007f0000 | ||
132 | #define __PSS_I2C_CLK_DIV_SH 16 | ||
133 | #define __PSS_I2C_CLK_DIV(_v) ((_v) << __PSS_I2C_CLK_DIV_SH) | ||
134 | #define __PSS_LMEM_INIT_DONE 0x00001000 | ||
135 | #define __PSS_LMEM_RESET 0x00000200 | ||
136 | #define __PSS_LMEM_INIT_EN 0x00000100 | ||
137 | #define __PSS_LPU1_RESET 0x00000002 | ||
138 | #define __PSS_LPU0_RESET 0x00000001 | ||
139 | #define PSS_ERR_STATUS_REG 0x00018810 /* cb/ct */ | ||
140 | #define ERR_SET_REG 0x00018818 /* cb/ct */ | ||
141 | #define PSS_GPIO_OUT_REG 0x000188c0 /* cb/ct */ | ||
142 | #define __PSS_GPIO_OUT_REG 0x00000fff | ||
143 | #define PSS_GPIO_OE_REG 0x000188c8 /* cb/ct */ | ||
144 | #define __PSS_GPIO_OE_REG 0x000000ff | ||
145 | |||
146 | #define HOSTFN0_LPU_MBOX0_0 0x00019200 /* cb/ct */ | ||
147 | #define HOSTFN1_LPU_MBOX0_8 0x00019260 /* cb/ct */ | ||
148 | #define LPU_HOSTFN0_MBOX0_0 0x00019280 /* cb/ct */ | ||
149 | #define LPU_HOSTFN1_MBOX0_8 0x000192e0 /* cb/ct */ | ||
150 | #define HOSTFN2_LPU_MBOX0_0 0x00019400 /* ct */ | ||
151 | #define HOSTFN3_LPU_MBOX0_8 0x00019460 /* ct */ | ||
152 | #define LPU_HOSTFN2_MBOX0_0 0x00019480 /* ct */ | ||
153 | #define LPU_HOSTFN3_MBOX0_8 0x000194e0 /* ct */ | ||
154 | |||
155 | #define HOST_MSIX_ERR_INDEX_FN0 0x0001400c /* ct */ | ||
156 | #define HOST_MSIX_ERR_INDEX_FN1 0x0001410c /* ct */ | ||
157 | #define HOST_MSIX_ERR_INDEX_FN2 0x0001430c /* ct */ | ||
158 | #define HOST_MSIX_ERR_INDEX_FN3 0x0001440c /* ct */ | ||
159 | |||
160 | #define MBIST_CTL_REG 0x00014220 /* ct */ | ||
161 | #define __EDRAM_BISTR_START 0x00000004 | ||
162 | #define MBIST_STAT_REG 0x00014224 /* ct */ | ||
163 | #define ETH_MAC_SER_REG 0x00014288 /* ct */ | ||
164 | #define __APP_EMS_CKBUFAMPIN 0x00000020 | ||
165 | #define __APP_EMS_REFCLKSEL 0x00000010 | ||
166 | #define __APP_EMS_CMLCKSEL 0x00000008 | ||
167 | #define __APP_EMS_REFCKBUFEN2 0x00000004 | ||
168 | #define __APP_EMS_REFCKBUFEN1 0x00000002 | ||
169 | #define __APP_EMS_CHANNEL_SEL 0x00000001 | ||
170 | #define FNC_PERS_REG 0x00014604 /* ct */ | ||
171 | #define __F3_FUNCTION_ACTIVE 0x80000000 | ||
172 | #define __F3_FUNCTION_MODE 0x40000000 | ||
173 | #define __F3_PORT_MAP_MK 0x30000000 | ||
174 | #define __F3_PORT_MAP_SH 28 | ||
175 | #define __F3_PORT_MAP(_v) ((_v) << __F3_PORT_MAP_SH) | ||
176 | #define __F3_VM_MODE 0x08000000 | ||
177 | #define __F3_INTX_STATUS_MK 0x07000000 | ||
178 | #define __F3_INTX_STATUS_SH 24 | ||
179 | #define __F3_INTX_STATUS(_v) ((_v) << __F3_INTX_STATUS_SH) | ||
180 | #define __F2_FUNCTION_ACTIVE 0x00800000 | ||
181 | #define __F2_FUNCTION_MODE 0x00400000 | ||
182 | #define __F2_PORT_MAP_MK 0x00300000 | ||
183 | #define __F2_PORT_MAP_SH 20 | ||
184 | #define __F2_PORT_MAP(_v) ((_v) << __F2_PORT_MAP_SH) | ||
185 | #define __F2_VM_MODE 0x00080000 | ||
186 | #define __F2_INTX_STATUS_MK 0x00070000 | ||
187 | #define __F2_INTX_STATUS_SH 16 | ||
188 | #define __F2_INTX_STATUS(_v) ((_v) << __F2_INTX_STATUS_SH) | ||
189 | #define __F1_FUNCTION_ACTIVE 0x00008000 | ||
190 | #define __F1_FUNCTION_MODE 0x00004000 | ||
191 | #define __F1_PORT_MAP_MK 0x00003000 | ||
192 | #define __F1_PORT_MAP_SH 12 | ||
193 | #define __F1_PORT_MAP(_v) ((_v) << __F1_PORT_MAP_SH) | ||
194 | #define __F1_VM_MODE 0x00000800 | ||
195 | #define __F1_INTX_STATUS_MK 0x00000700 | ||
196 | #define __F1_INTX_STATUS_SH 8 | ||
197 | #define __F1_INTX_STATUS(_v) ((_v) << __F1_INTX_STATUS_SH) | ||
198 | #define __F0_FUNCTION_ACTIVE 0x00000080 | ||
199 | #define __F0_FUNCTION_MODE 0x00000040 | ||
200 | #define __F0_PORT_MAP_MK 0x00000030 | ||
201 | #define __F0_PORT_MAP_SH 4 | ||
202 | #define __F0_PORT_MAP(_v) ((_v) << __F0_PORT_MAP_SH) | ||
203 | #define __F0_VM_MODE 0x00000008 | ||
204 | #define __F0_INTX_STATUS 0x00000007 | ||
205 | enum { | ||
206 | __F0_INTX_STATUS_MSIX = 0x0, | ||
207 | __F0_INTX_STATUS_INTA = 0x1, | ||
208 | __F0_INTX_STATUS_INTB = 0x2, | ||
209 | __F0_INTX_STATUS_INTC = 0x3, | ||
210 | __F0_INTX_STATUS_INTD = 0x4, | ||
211 | }; | ||
212 | |||
213 | #define OP_MODE 0x0001460c | ||
214 | #define __APP_ETH_CLK_LOWSPEED 0x00000004 | ||
215 | #define __GLOBAL_CORECLK_HALFSPEED 0x00000002 | ||
216 | #define __GLOBAL_FCOE_MODE 0x00000001 | ||
217 | #define FW_INIT_HALT_P0 0x000191ac | ||
218 | #define __FW_INIT_HALT_P 0x00000001 | ||
219 | #define FW_INIT_HALT_P1 0x000191bc | ||
220 | #define PMM_1T_RESET_REG_P0 0x0002381c | ||
221 | #define __PMM_1T_RESET_P 0x00000001 | ||
222 | #define PMM_1T_RESET_REG_P1 0x00023c1c | ||
223 | |||
224 | /** | ||
225 | * Brocade 1860 Adapter specific defines | ||
226 | */ | ||
227 | #define CT2_PCI_CPQ_BASE 0x00030000 | ||
228 | #define CT2_PCI_APP_BASE 0x00030100 | ||
229 | #define CT2_PCI_ETH_BASE 0x00030400 | ||
230 | |||
231 | /* | ||
232 | * APP block registers | ||
233 | */ | ||
234 | #define CT2_HOSTFN_INT_STATUS (CT2_PCI_APP_BASE + 0x00) | ||
235 | #define CT2_HOSTFN_INTR_MASK (CT2_PCI_APP_BASE + 0x04) | ||
236 | #define CT2_HOSTFN_PERSONALITY0 (CT2_PCI_APP_BASE + 0x08) | ||
237 | #define __PME_STATUS_ 0x00200000 | ||
238 | #define __PF_VF_BAR_SIZE_MODE__MK 0x00180000 | ||
239 | #define __PF_VF_BAR_SIZE_MODE__SH 19 | ||
240 | #define __PF_VF_BAR_SIZE_MODE_(_v) ((_v) << __PF_VF_BAR_SIZE_MODE__SH) | ||
241 | #define __FC_LL_PORT_MAP__MK 0x00060000 | ||
242 | #define __FC_LL_PORT_MAP__SH 17 | ||
243 | #define __FC_LL_PORT_MAP_(_v) ((_v) << __FC_LL_PORT_MAP__SH) | ||
244 | #define __PF_VF_ACTIVE_ 0x00010000 | ||
245 | #define __PF_VF_CFG_RDY_ 0x00008000 | ||
246 | #define __PF_VF_ENABLE_ 0x00004000 | ||
247 | #define __PF_DRIVER_ACTIVE_ 0x00002000 | ||
248 | #define __PF_PME_SEND_ENABLE_ 0x00001000 | ||
249 | #define __PF_EXROM_OFFSET__MK 0x00000ff0 | ||
250 | #define __PF_EXROM_OFFSET__SH 4 | ||
251 | #define __PF_EXROM_OFFSET_(_v) ((_v) << __PF_EXROM_OFFSET__SH) | ||
252 | #define __FC_LL_MODE_ 0x00000008 | ||
253 | #define __PF_INTX_PIN_ 0x00000007 | ||
254 | #define CT2_HOSTFN_PERSONALITY1 (CT2_PCI_APP_BASE + 0x0C) | ||
255 | #define __PF_NUM_QUEUES1__MK 0xff000000 | ||
256 | #define __PF_NUM_QUEUES1__SH 24 | ||
257 | #define __PF_NUM_QUEUES1_(_v) ((_v) << __PF_NUM_QUEUES1__SH) | ||
258 | #define __PF_VF_QUE_OFFSET1__MK 0x00ff0000 | ||
259 | #define __PF_VF_QUE_OFFSET1__SH 16 | ||
260 | #define __PF_VF_QUE_OFFSET1_(_v) ((_v) << __PF_VF_QUE_OFFSET1__SH) | ||
261 | #define __PF_VF_NUM_QUEUES__MK 0x0000ff00 | ||
262 | #define __PF_VF_NUM_QUEUES__SH 8 | ||
263 | #define __PF_VF_NUM_QUEUES_(_v) ((_v) << __PF_VF_NUM_QUEUES__SH) | ||
264 | #define __PF_VF_QUE_OFFSET_ 0x000000ff | ||
265 | #define CT2_HOSTFN_PAGE_NUM (CT2_PCI_APP_BASE + 0x18) | ||
266 | #define CT2_HOSTFN_MSIX_VT_INDEX_MBOX_ERR (CT2_PCI_APP_BASE + 0x38) | ||
267 | |||
268 | /* | ||
269 | * Brocade 1860 adapter CPQ block registers | ||
270 | */ | ||
271 | #define CT2_HOSTFN_LPU0_MBOX0 (CT2_PCI_CPQ_BASE + 0x00) | ||
272 | #define CT2_HOSTFN_LPU1_MBOX0 (CT2_PCI_CPQ_BASE + 0x20) | ||
273 | #define CT2_LPU0_HOSTFN_MBOX0 (CT2_PCI_CPQ_BASE + 0x40) | ||
274 | #define CT2_LPU1_HOSTFN_MBOX0 (CT2_PCI_CPQ_BASE + 0x60) | ||
275 | #define CT2_HOSTFN_LPU0_CMD_STAT (CT2_PCI_CPQ_BASE + 0x80) | ||
276 | #define CT2_HOSTFN_LPU1_CMD_STAT (CT2_PCI_CPQ_BASE + 0x84) | ||
277 | #define CT2_LPU0_HOSTFN_CMD_STAT (CT2_PCI_CPQ_BASE + 0x88) | ||
278 | #define CT2_LPU1_HOSTFN_CMD_STAT (CT2_PCI_CPQ_BASE + 0x8c) | ||
279 | #define CT2_HOSTFN_LPU0_READ_STAT (CT2_PCI_CPQ_BASE + 0x90) | ||
280 | #define CT2_HOSTFN_LPU1_READ_STAT (CT2_PCI_CPQ_BASE + 0x94) | ||
281 | #define CT2_LPU0_HOSTFN_MBOX0_MSK (CT2_PCI_CPQ_BASE + 0x98) | ||
282 | #define CT2_LPU1_HOSTFN_MBOX0_MSK (CT2_PCI_CPQ_BASE + 0x9C) | ||
283 | #define CT2_HOST_SEM0_REG 0x000148f0 | ||
284 | #define CT2_HOST_SEM1_REG 0x000148f4 | ||
285 | #define CT2_HOST_SEM2_REG 0x000148f8 | ||
286 | #define CT2_HOST_SEM3_REG 0x000148fc | ||
287 | #define CT2_HOST_SEM4_REG 0x00014900 | ||
288 | #define CT2_HOST_SEM5_REG 0x00014904 | ||
289 | #define CT2_HOST_SEM6_REG 0x00014908 | ||
290 | #define CT2_HOST_SEM7_REG 0x0001490c | ||
291 | #define CT2_HOST_SEM0_INFO_REG 0x000148b0 | ||
292 | #define CT2_HOST_SEM1_INFO_REG 0x000148b4 | ||
293 | #define CT2_HOST_SEM2_INFO_REG 0x000148b8 | ||
294 | #define CT2_HOST_SEM3_INFO_REG 0x000148bc | ||
295 | #define CT2_HOST_SEM4_INFO_REG 0x000148c0 | ||
296 | #define CT2_HOST_SEM5_INFO_REG 0x000148c4 | ||
297 | #define CT2_HOST_SEM6_INFO_REG 0x000148c8 | ||
298 | #define CT2_HOST_SEM7_INFO_REG 0x000148cc | ||
299 | |||
300 | #define CT2_APP_PLL_LCLK_CTL_REG 0x00014808 | ||
301 | #define __APP_LPUCLK_HALFSPEED 0x40000000 | ||
302 | #define __APP_PLL_LCLK_LOAD 0x20000000 | ||
303 | #define __APP_PLL_LCLK_FBCNT_MK 0x1fe00000 | ||
304 | #define __APP_PLL_LCLK_FBCNT_SH 21 | ||
305 | #define __APP_PLL_LCLK_FBCNT(_v) ((_v) << __APP_PLL_SCLK_FBCNT_SH) | ||
306 | enum { | ||
307 | __APP_PLL_LCLK_FBCNT_425_MHZ = 6, | ||
308 | __APP_PLL_LCLK_FBCNT_468_MHZ = 4, | ||
309 | }; | ||
310 | #define __APP_PLL_LCLK_EXTFB 0x00000800 | ||
311 | #define __APP_PLL_LCLK_ENOUTS 0x00000400 | ||
312 | #define __APP_PLL_LCLK_RATE 0x00000010 | ||
313 | #define CT2_APP_PLL_SCLK_CTL_REG 0x0001480c | ||
314 | #define __P_SCLK_PLL_LOCK 0x80000000 | ||
315 | #define __APP_PLL_SCLK_REFCLK_SEL 0x40000000 | ||
316 | #define __APP_PLL_SCLK_CLK_DIV2 0x20000000 | ||
317 | #define __APP_PLL_SCLK_LOAD 0x10000000 | ||
318 | #define __APP_PLL_SCLK_FBCNT_MK 0x0ff00000 | ||
319 | #define __APP_PLL_SCLK_FBCNT_SH 20 | ||
320 | #define __APP_PLL_SCLK_FBCNT(_v) ((_v) << __APP_PLL_SCLK_FBCNT_SH) | ||
321 | enum { | ||
322 | __APP_PLL_SCLK_FBCNT_NORM = 6, | ||
323 | __APP_PLL_SCLK_FBCNT_10G_FC = 10, | ||
324 | }; | ||
325 | #define __APP_PLL_SCLK_EXTFB 0x00000800 | ||
326 | #define __APP_PLL_SCLK_ENOUTS 0x00000400 | ||
327 | #define __APP_PLL_SCLK_RATE 0x00000010 | ||
328 | #define CT2_PCIE_MISC_REG 0x00014804 | ||
329 | #define __ETH_CLK_ENABLE_PORT1 0x00000010 | ||
330 | #define CT2_CHIP_MISC_PRG 0x000148a4 | ||
331 | #define __ETH_CLK_ENABLE_PORT0 0x00004000 | ||
332 | #define __APP_LPU_SPEED 0x00000002 | ||
333 | #define CT2_MBIST_STAT_REG 0x00014818 | ||
334 | #define CT2_MBIST_CTL_REG 0x0001481c | ||
335 | #define CT2_PMM_1T_CONTROL_REG_P0 0x0002381c | ||
336 | #define __PMM_1T_PNDB_P 0x00000002 | ||
337 | #define CT2_PMM_1T_CONTROL_REG_P1 0x00023c1c | ||
338 | #define CT2_WGN_STATUS 0x00014990 | ||
339 | #define __A2T_AHB_LOAD 0x00000800 | ||
340 | #define __WGN_READY 0x00000400 | ||
341 | #define __GLBL_PF_VF_CFG_RDY 0x00000200 | ||
342 | #define CT2_NFC_CSR_SET_REG 0x00027424 | ||
343 | #define __HALT_NFC_CONTROLLER 0x00000002 | ||
344 | #define __NFC_CONTROLLER_HALTED 0x00001000 | ||
345 | |||
346 | #define CT2_CSI_MAC0_CONTROL_REG 0x000270d0 | ||
347 | #define __CSI_MAC_RESET 0x00000010 | ||
348 | #define __CSI_MAC_AHB_RESET 0x00000008 | ||
349 | #define CT2_CSI_MAC1_CONTROL_REG 0x000270d4 | ||
350 | #define CT2_CSI_MAC_CONTROL_REG(__n) \ | ||
351 | (CT2_CSI_MAC0_CONTROL_REG + \ | ||
352 | (__n) * (CT2_CSI_MAC1_CONTROL_REG - CT2_CSI_MAC0_CONTROL_REG)) | ||
353 | |||
354 | /* | ||
355 | * Name semaphore registers based on usage | ||
356 | */ | ||
357 | #define BFA_IOC0_HBEAT_REG HOST_SEM0_INFO_REG | ||
358 | #define BFA_IOC0_STATE_REG HOST_SEM1_INFO_REG | ||
359 | #define BFA_IOC1_HBEAT_REG HOST_SEM2_INFO_REG | ||
360 | #define BFA_IOC1_STATE_REG HOST_SEM3_INFO_REG | ||
361 | #define BFA_FW_USE_COUNT HOST_SEM4_INFO_REG | ||
362 | #define BFA_IOC_FAIL_SYNC HOST_SEM5_INFO_REG | ||
363 | |||
364 | /* | ||
365 | * CT2 semaphore register locations changed | ||
366 | */ | ||
367 | #define CT2_BFA_IOC0_HBEAT_REG CT2_HOST_SEM0_INFO_REG | ||
368 | #define CT2_BFA_IOC0_STATE_REG CT2_HOST_SEM1_INFO_REG | ||
369 | #define CT2_BFA_IOC1_HBEAT_REG CT2_HOST_SEM2_INFO_REG | ||
370 | #define CT2_BFA_IOC1_STATE_REG CT2_HOST_SEM3_INFO_REG | ||
371 | #define CT2_BFA_FW_USE_COUNT CT2_HOST_SEM4_INFO_REG | ||
372 | #define CT2_BFA_IOC_FAIL_SYNC CT2_HOST_SEM5_INFO_REG | ||
373 | |||
374 | #define CPE_Q_NUM(__fn, __q) (((__fn) << 2) + (__q)) | ||
375 | #define RME_Q_NUM(__fn, __q) (((__fn) << 2) + (__q)) | ||
376 | |||
377 | /* | ||
378 | * And corresponding host interrupt status bit field defines | ||
379 | */ | ||
380 | #define __HFN_INT_CPE_Q0 0x00000001U | ||
381 | #define __HFN_INT_CPE_Q1 0x00000002U | ||
382 | #define __HFN_INT_CPE_Q2 0x00000004U | ||
383 | #define __HFN_INT_CPE_Q3 0x00000008U | ||
384 | #define __HFN_INT_CPE_Q4 0x00000010U | ||
385 | #define __HFN_INT_CPE_Q5 0x00000020U | ||
386 | #define __HFN_INT_CPE_Q6 0x00000040U | ||
387 | #define __HFN_INT_CPE_Q7 0x00000080U | ||
388 | #define __HFN_INT_RME_Q0 0x00000100U | ||
389 | #define __HFN_INT_RME_Q1 0x00000200U | ||
390 | #define __HFN_INT_RME_Q2 0x00000400U | ||
391 | #define __HFN_INT_RME_Q3 0x00000800U | ||
392 | #define __HFN_INT_RME_Q4 0x00001000U | ||
393 | #define __HFN_INT_RME_Q5 0x00002000U | ||
394 | #define __HFN_INT_RME_Q6 0x00004000U | ||
395 | #define __HFN_INT_RME_Q7 0x00008000U | ||
396 | #define __HFN_INT_ERR_EMC 0x00010000U | ||
397 | #define __HFN_INT_ERR_LPU0 0x00020000U | ||
398 | #define __HFN_INT_ERR_LPU1 0x00040000U | ||
399 | #define __HFN_INT_ERR_PSS 0x00080000U | ||
400 | #define __HFN_INT_MBOX_LPU0 0x00100000U | ||
401 | #define __HFN_INT_MBOX_LPU1 0x00200000U | ||
402 | #define __HFN_INT_MBOX1_LPU0 0x00400000U | ||
403 | #define __HFN_INT_MBOX1_LPU1 0x00800000U | ||
404 | #define __HFN_INT_LL_HALT 0x01000000U | ||
405 | #define __HFN_INT_CPE_MASK 0x000000ffU | ||
406 | #define __HFN_INT_RME_MASK 0x0000ff00U | ||
407 | #define __HFN_INT_ERR_MASK \ | ||
408 | (__HFN_INT_ERR_EMC | __HFN_INT_ERR_LPU0 | __HFN_INT_ERR_LPU1 | \ | ||
409 | __HFN_INT_ERR_PSS | __HFN_INT_LL_HALT) | ||
410 | #define __HFN_INT_FN0_MASK \ | ||
411 | (__HFN_INT_CPE_Q0 | __HFN_INT_CPE_Q1 | __HFN_INT_CPE_Q2 | \ | ||
412 | __HFN_INT_CPE_Q3 | __HFN_INT_RME_Q0 | __HFN_INT_RME_Q1 | \ | ||
413 | __HFN_INT_RME_Q2 | __HFN_INT_RME_Q3 | __HFN_INT_MBOX_LPU0) | ||
414 | #define __HFN_INT_FN1_MASK \ | ||
415 | (__HFN_INT_CPE_Q4 | __HFN_INT_CPE_Q5 | __HFN_INT_CPE_Q6 | \ | ||
416 | __HFN_INT_CPE_Q7 | __HFN_INT_RME_Q4 | __HFN_INT_RME_Q5 | \ | ||
417 | __HFN_INT_RME_Q6 | __HFN_INT_RME_Q7 | __HFN_INT_MBOX_LPU1) | ||
418 | |||
419 | /* | ||
420 | * Host interrupt status defines for 1860 | ||
421 | */ | ||
422 | #define __HFN_INT_MBOX_LPU0_CT2 0x00010000U | ||
423 | #define __HFN_INT_MBOX_LPU1_CT2 0x00020000U | ||
424 | #define __HFN_INT_ERR_PSS_CT2 0x00040000U | ||
425 | #define __HFN_INT_ERR_LPU0_CT2 0x00080000U | ||
426 | #define __HFN_INT_ERR_LPU1_CT2 0x00100000U | ||
427 | #define __HFN_INT_CPQ_HALT_CT2 0x00200000U | ||
428 | #define __HFN_INT_ERR_WGN_CT2 0x00400000U | ||
429 | #define __HFN_INT_ERR_LEHRX_CT2 0x00800000U | ||
430 | #define __HFN_INT_ERR_LEHTX_CT2 0x01000000U | ||
431 | #define __HFN_INT_ERR_MASK_CT2 \ | ||
432 | (__HFN_INT_ERR_PSS_CT2 | __HFN_INT_ERR_LPU0_CT2 | \ | ||
433 | __HFN_INT_ERR_LPU1_CT2 | __HFN_INT_CPQ_HALT_CT2 | \ | ||
434 | __HFN_INT_ERR_WGN_CT2 | __HFN_INT_ERR_LEHRX_CT2 | \ | ||
435 | __HFN_INT_ERR_LEHTX_CT2) | ||
436 | #define __HFN_INT_FN0_MASK_CT2 \ | ||
437 | (__HFN_INT_CPE_Q0 | __HFN_INT_CPE_Q1 | __HFN_INT_CPE_Q2 | \ | ||
438 | __HFN_INT_CPE_Q3 | __HFN_INT_RME_Q0 | __HFN_INT_RME_Q1 | \ | ||
439 | __HFN_INT_RME_Q2 | __HFN_INT_RME_Q3 | __HFN_INT_MBOX_LPU0_CT2) | ||
440 | #define __HFN_INT_FN1_MASK_CT2 \ | ||
441 | (__HFN_INT_CPE_Q4 | __HFN_INT_CPE_Q5 | __HFN_INT_CPE_Q6 | \ | ||
442 | __HFN_INT_CPE_Q7 | __HFN_INT_RME_Q4 | __HFN_INT_RME_Q5 | \ | ||
443 | __HFN_INT_RME_Q6 | __HFN_INT_RME_Q7 | __HFN_INT_MBOX_LPU1_CT2) | ||
444 | |||
445 | /* | ||
446 | * asic memory map. | ||
447 | */ | ||
448 | #define PSS_SMEM_PAGE_START 0x8000 | ||
449 | #define PSS_SMEM_PGNUM(_pg0, _ma) ((_pg0) + ((_ma) >> 15)) | ||
450 | #define PSS_SMEM_PGOFF(_ma) ((_ma) & 0x7fff) | ||
451 | |||
452 | #endif /* __BFI_REG_H__ */ | ||
diff --git a/drivers/net/bna/bna_hw.h b/drivers/net/bna/bna_hw.h index cad233da843a..16a5eed4a03b 100644 --- a/drivers/net/bna/bna_hw.h +++ b/drivers/net/bna/bna_hw.h | |||
@@ -14,14 +14,16 @@ | |||
14 | * Copyright (c) 2005-2010 Brocade Communications Systems, Inc. | 14 | * Copyright (c) 2005-2010 Brocade Communications Systems, Inc. |
15 | * All rights reserved | 15 | * All rights reserved |
16 | * www.brocade.com | 16 | * www.brocade.com |
17 | * | 17 | */ |
18 | |||
19 | /** | ||
18 | * File for interrupt macros and functions | 20 | * File for interrupt macros and functions |
19 | */ | 21 | */ |
20 | 22 | ||
21 | #ifndef __BNA_HW_H__ | 23 | #ifndef __BNA_HW_H__ |
22 | #define __BNA_HW_H__ | 24 | #define __BNA_HW_H__ |
23 | 25 | ||
24 | #include "bfi_ctreg.h" | 26 | #include "bfi_reg.h" |
25 | 27 | ||
26 | /** | 28 | /** |
27 | * | 29 | * |