Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 1 | /* |
Krishna Gudipati | a36c61f | 2010-09-15 11:50:55 -0700 | [diff] [blame] | 2 | * Copyright (c) 2005-2010 Brocade Communications Systems, Inc. |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 3 | * 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 Zhang | f16a175 | 2010-12-09 19:12:32 -0800 | [diff] [blame] | 18 | #include "bfad_drv.h" |
Krishna Gudipati | a36c61f | 2010-09-15 11:50:55 -0700 | [diff] [blame] | 19 | #include "bfa_ioc.h" |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 20 | #include "bfi_reg.h" |
Krishna Gudipati | a36c61f | 2010-09-15 11:50:55 -0700 | [diff] [blame] | 21 | #include "bfa_defs.h" |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 22 | |
| 23 | BFA_TRC_FILE(CNA, IOC_CT); |
| 24 | |
Krishna Gudipati | f1d584d | 2010-12-13 16:17:11 -0800 | [diff] [blame] | 25 | #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 Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 34 | /* |
| 35 | * forward declarations |
| 36 | */ |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 37 | static bfa_boolean_t bfa_ioc_ct_firmware_lock(struct bfa_ioc_s *ioc); |
| 38 | static void bfa_ioc_ct_firmware_unlock(struct bfa_ioc_s *ioc); |
Krishna Gudipati | f1d584d | 2010-12-13 16:17:11 -0800 | [diff] [blame] | 39 | static void bfa_ioc_ct_notify_fail(struct bfa_ioc_s *ioc); |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 40 | static void bfa_ioc_ct_ownership_reset(struct bfa_ioc_s *ioc); |
Jing Huang | 45d7f0c | 2011-04-13 11:45:53 -0700 | [diff] [blame] | 41 | static bfa_boolean_t bfa_ioc_ct_sync_start(struct bfa_ioc_s *ioc); |
Krishna Gudipati | f1d584d | 2010-12-13 16:17:11 -0800 | [diff] [blame] | 42 | static void bfa_ioc_ct_sync_join(struct bfa_ioc_s *ioc); |
| 43 | static void bfa_ioc_ct_sync_leave(struct bfa_ioc_s *ioc); |
| 44 | static void bfa_ioc_ct_sync_ack(struct bfa_ioc_s *ioc); |
| 45 | static bfa_boolean_t bfa_ioc_ct_sync_complete(struct bfa_ioc_s *ioc); |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 46 | |
Maggie | 52f94b6 | 2010-11-29 18:21:32 -0800 | [diff] [blame] | 47 | static struct bfa_ioc_hwif_s hwif_ct; |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 48 | static struct bfa_ioc_hwif_s hwif_ct2; |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 49 | |
Jing Huang | 5fbe25c | 2010-10-18 17:17:23 -0700 | [diff] [blame] | 50 | /* |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 51 | * Return true if firmware of current driver matches the running firmware. |
| 52 | */ |
| 53 | static bfa_boolean_t |
| 54 | bfa_ioc_ct_firmware_lock(struct bfa_ioc_s *ioc) |
| 55 | { |
| 56 | enum bfi_ioc_state ioc_fwstate; |
Krishna Gudipati | d1c61f8 | 2010-03-05 19:38:44 -0800 | [diff] [blame] | 57 | u32 usecnt; |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 58 | struct bfi_ioc_image_hdr_s fwhdr; |
| 59 | |
Jing Huang | 5fbe25c | 2010-10-18 17:17:23 -0700 | [diff] [blame] | 60 | /* |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 61 | * If bios boot (flash based) -- do not increment usage count |
| 62 | */ |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 63 | if (bfa_cb_image_get_size(bfa_ioc_asic_gen(ioc)) < |
Krishna Gudipati | a36c61f | 2010-09-15 11:50:55 -0700 | [diff] [blame] | 64 | BFA_IOC_FWIMG_MINSZ) |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 65 | return BFA_TRUE; |
| 66 | |
| 67 | bfa_ioc_sem_get(ioc->ioc_regs.ioc_usage_sem_reg); |
Jing Huang | 5344026 | 2010-10-18 17:12:29 -0700 | [diff] [blame] | 68 | usecnt = readl(ioc->ioc_regs.ioc_usage_reg); |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 69 | |
Jing Huang | 5fbe25c | 2010-10-18 17:17:23 -0700 | [diff] [blame] | 70 | /* |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 71 | * If usage count is 0, always return TRUE. |
| 72 | */ |
| 73 | if (usecnt == 0) { |
Jing Huang | 5344026 | 2010-10-18 17:12:29 -0700 | [diff] [blame] | 74 | writel(1, ioc->ioc_regs.ioc_usage_reg); |
Krishna Gudipati | 5a0adae | 2011-06-24 20:22:56 -0700 | [diff] [blame] | 75 | readl(ioc->ioc_regs.ioc_usage_sem_reg); |
Maggie Zhang | f7f7381 | 2010-12-09 19:08:43 -0800 | [diff] [blame] | 76 | writel(1, ioc->ioc_regs.ioc_usage_sem_reg); |
Krishna Gudipati | f1d584d | 2010-12-13 16:17:11 -0800 | [diff] [blame] | 77 | writel(0, ioc->ioc_regs.ioc_fail_sync); |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 78 | bfa_trc(ioc, usecnt); |
| 79 | return BFA_TRUE; |
| 80 | } |
| 81 | |
Jing Huang | 5344026 | 2010-10-18 17:12:29 -0700 | [diff] [blame] | 82 | ioc_fwstate = readl(ioc->ioc_regs.ioc_fwstate); |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 83 | bfa_trc(ioc, ioc_fwstate); |
| 84 | |
Jing Huang | 5fbe25c | 2010-10-18 17:17:23 -0700 | [diff] [blame] | 85 | /* |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 86 | * Use count cannot be non-zero and chip in uninitialized state. |
| 87 | */ |
Jing Huang | d4b671c | 2010-12-26 21:46:35 -0800 | [diff] [blame] | 88 | WARN_ON(ioc_fwstate == BFI_IOC_UNINIT); |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 89 | |
Jing Huang | 5fbe25c | 2010-10-18 17:17:23 -0700 | [diff] [blame] | 90 | /* |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 91 | * 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 Gudipati | 5a0adae | 2011-06-24 20:22:56 -0700 | [diff] [blame] | 95 | readl(ioc->ioc_regs.ioc_usage_sem_reg); |
Maggie Zhang | f7f7381 | 2010-12-09 19:08:43 -0800 | [diff] [blame] | 96 | writel(1, ioc->ioc_regs.ioc_usage_sem_reg); |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 97 | bfa_trc(ioc, usecnt); |
| 98 | return BFA_FALSE; |
| 99 | } |
| 100 | |
Jing Huang | 5fbe25c | 2010-10-18 17:17:23 -0700 | [diff] [blame] | 101 | /* |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 102 | * Same firmware version. Increment the reference count. |
| 103 | */ |
| 104 | usecnt++; |
Jing Huang | 5344026 | 2010-10-18 17:12:29 -0700 | [diff] [blame] | 105 | writel(usecnt, ioc->ioc_regs.ioc_usage_reg); |
Krishna Gudipati | 5a0adae | 2011-06-24 20:22:56 -0700 | [diff] [blame] | 106 | readl(ioc->ioc_regs.ioc_usage_sem_reg); |
Maggie Zhang | f7f7381 | 2010-12-09 19:08:43 -0800 | [diff] [blame] | 107 | writel(1, ioc->ioc_regs.ioc_usage_sem_reg); |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 108 | bfa_trc(ioc, usecnt); |
| 109 | return BFA_TRUE; |
| 110 | } |
| 111 | |
| 112 | static void |
| 113 | bfa_ioc_ct_firmware_unlock(struct bfa_ioc_s *ioc) |
| 114 | { |
Krishna Gudipati | d1c61f8 | 2010-03-05 19:38:44 -0800 | [diff] [blame] | 115 | u32 usecnt; |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 116 | |
Jing Huang | 5fbe25c | 2010-10-18 17:17:23 -0700 | [diff] [blame] | 117 | /* |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 118 | * If bios boot (flash based) -- do not decrement usage count |
| 119 | */ |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 120 | if (bfa_cb_image_get_size(bfa_ioc_asic_gen(ioc)) < |
Krishna Gudipati | a36c61f | 2010-09-15 11:50:55 -0700 | [diff] [blame] | 121 | BFA_IOC_FWIMG_MINSZ) |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 122 | return; |
| 123 | |
Jing Huang | 5fbe25c | 2010-10-18 17:17:23 -0700 | [diff] [blame] | 124 | /* |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 125 | * decrement usage count |
| 126 | */ |
| 127 | bfa_ioc_sem_get(ioc->ioc_regs.ioc_usage_sem_reg); |
Jing Huang | 5344026 | 2010-10-18 17:12:29 -0700 | [diff] [blame] | 128 | usecnt = readl(ioc->ioc_regs.ioc_usage_reg); |
Jing Huang | d4b671c | 2010-12-26 21:46:35 -0800 | [diff] [blame] | 129 | WARN_ON(usecnt <= 0); |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 130 | |
| 131 | usecnt--; |
Jing Huang | 5344026 | 2010-10-18 17:12:29 -0700 | [diff] [blame] | 132 | writel(usecnt, ioc->ioc_regs.ioc_usage_reg); |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 133 | bfa_trc(ioc, usecnt); |
| 134 | |
Krishna Gudipati | 5a0adae | 2011-06-24 20:22:56 -0700 | [diff] [blame] | 135 | readl(ioc->ioc_regs.ioc_usage_sem_reg); |
Maggie Zhang | f7f7381 | 2010-12-09 19:08:43 -0800 | [diff] [blame] | 136 | writel(1, ioc->ioc_regs.ioc_usage_sem_reg); |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 137 | } |
| 138 | |
Jing Huang | 5fbe25c | 2010-10-18 17:17:23 -0700 | [diff] [blame] | 139 | /* |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 140 | * Notify other functions on HB failure. |
| 141 | */ |
| 142 | static void |
Krishna Gudipati | f1d584d | 2010-12-13 16:17:11 -0800 | [diff] [blame] | 143 | bfa_ioc_ct_notify_fail(struct bfa_ioc_s *ioc) |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 144 | { |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 145 | if (bfa_ioc_is_cna(ioc)) { |
Jing Huang | 5344026 | 2010-10-18 17:12:29 -0700 | [diff] [blame] | 146 | writel(__FW_INIT_HALT_P, ioc->ioc_regs.ll_halt); |
Krishna Gudipati | f1d584d | 2010-12-13 16:17:11 -0800 | [diff] [blame] | 147 | writel(__FW_INIT_HALT_P, ioc->ioc_regs.alt_ll_halt); |
Krishna Gudipati | 816e49b | 2010-03-05 19:36:56 -0800 | [diff] [blame] | 148 | /* Wait for halt to take effect */ |
Jing Huang | 5344026 | 2010-10-18 17:12:29 -0700 | [diff] [blame] | 149 | readl(ioc->ioc_regs.ll_halt); |
Krishna Gudipati | f1d584d | 2010-12-13 16:17:11 -0800 | [diff] [blame] | 150 | readl(ioc->ioc_regs.alt_ll_halt); |
Krishna Gudipati | 816e49b | 2010-03-05 19:36:56 -0800 | [diff] [blame] | 151 | } else { |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 152 | writel(~0U, ioc->ioc_regs.err_set); |
Jing Huang | 5344026 | 2010-10-18 17:12:29 -0700 | [diff] [blame] | 153 | readl(ioc->ioc_regs.err_set); |
Krishna Gudipati | 816e49b | 2010-03-05 19:36:56 -0800 | [diff] [blame] | 154 | } |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 155 | } |
| 156 | |
Jing Huang | 5fbe25c | 2010-10-18 17:17:23 -0700 | [diff] [blame] | 157 | /* |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 158 | * Host to LPU mailbox message addresses |
| 159 | */ |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 160 | static struct { u32 hfn_mbox, lpu_mbox, hfn_pgn; } ct_fnreg[] = { |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 161 | { 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 Huang | 5fbe25c | 2010-10-18 17:17:23 -0700 | [diff] [blame] | 167 | /* |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 168 | * Host <-> LPU mailbox command/status registers - port 0 |
| 169 | */ |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 170 | static 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 Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 175 | }; |
| 176 | |
Jing Huang | 5fbe25c | 2010-10-18 17:17:23 -0700 | [diff] [blame] | 177 | /* |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 178 | * Host <-> LPU mailbox command/status registers - port 1 |
| 179 | */ |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 180 | static 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 Gudipati | 8b070b4 | 2011-06-13 15:52:40 -0700 | [diff] [blame] | 187 | static struct { uint32_t hfn_mbox, lpu_mbox, hfn_pgn, hfn, lpu, lpu_read; } |
| 188 | ct2_reg[] = { |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 189 | { CT2_HOSTFN_LPU0_MBOX0, CT2_LPU0_HOSTFN_MBOX0, CT2_HOSTFN_PAGE_NUM, |
Krishna Gudipati | 8b070b4 | 2011-06-13 15:52:40 -0700 | [diff] [blame] | 190 | CT2_HOSTFN_LPU0_CMD_STAT, CT2_LPU0_HOSTFN_CMD_STAT, |
| 191 | CT2_HOSTFN_LPU0_READ_STAT}, |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 192 | { CT2_HOSTFN_LPU1_MBOX0, CT2_LPU1_HOSTFN_MBOX0, CT2_HOSTFN_PAGE_NUM, |
Krishna Gudipati | 8b070b4 | 2011-06-13 15:52:40 -0700 | [diff] [blame] | 193 | CT2_HOSTFN_LPU1_CMD_STAT, CT2_LPU1_HOSTFN_CMD_STAT, |
| 194 | CT2_HOSTFN_LPU1_READ_STAT}, |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 195 | }; |
| 196 | |
| 197 | static void |
| 198 | bfa_ioc_ct_reg_init(struct bfa_ioc_s *ioc) |
| 199 | { |
Jing Huang | 5344026 | 2010-10-18 17:12:29 -0700 | [diff] [blame] | 200 | void __iomem *rb; |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 201 | int pcifn = bfa_ioc_pcifn(ioc); |
| 202 | |
| 203 | rb = bfa_ioc_bar0(ioc); |
| 204 | |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 205 | 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 Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 208 | |
| 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 Gudipati | f1d584d | 2010-12-13 16:17:11 -0800 | [diff] [blame] | 212 | ioc->ioc_regs.alt_ioc_fwstate = rb + BFA_IOC1_STATE_REG; |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 213 | ioc->ioc_regs.hfn_mbox_cmd = rb + ct_p0reg[pcifn].hfn; |
| 214 | ioc->ioc_regs.lpu_mbox_cmd = rb + ct_p0reg[pcifn].lpu; |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 215 | ioc->ioc_regs.ll_halt = rb + FW_INIT_HALT_P0; |
Krishna Gudipati | f1d584d | 2010-12-13 16:17:11 -0800 | [diff] [blame] | 216 | ioc->ioc_regs.alt_ll_halt = rb + FW_INIT_HALT_P1; |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 217 | } else { |
| 218 | ioc->ioc_regs.heartbeat = (rb + BFA_IOC1_HBEAT_REG); |
| 219 | ioc->ioc_regs.ioc_fwstate = (rb + BFA_IOC1_STATE_REG); |
Krishna Gudipati | f1d584d | 2010-12-13 16:17:11 -0800 | [diff] [blame] | 220 | ioc->ioc_regs.alt_ioc_fwstate = rb + BFA_IOC0_STATE_REG; |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 221 | ioc->ioc_regs.hfn_mbox_cmd = rb + ct_p1reg[pcifn].hfn; |
| 222 | ioc->ioc_regs.lpu_mbox_cmd = rb + ct_p1reg[pcifn].lpu; |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 223 | ioc->ioc_regs.ll_halt = rb + FW_INIT_HALT_P1; |
Krishna Gudipati | f1d584d | 2010-12-13 16:17:11 -0800 | [diff] [blame] | 224 | ioc->ioc_regs.alt_ll_halt = rb + FW_INIT_HALT_P0; |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 225 | } |
| 226 | |
| 227 | /* |
| 228 | * PSS control registers |
| 229 | */ |
| 230 | ioc->ioc_regs.pss_ctl_reg = (rb + PSS_CTL_REG); |
Krishna Gudipati | 8b651b4 | 2010-03-05 19:34:44 -0800 | [diff] [blame] | 231 | ioc->ioc_regs.pss_err_status_reg = (rb + PSS_ERR_STATUS_REG); |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 232 | 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 Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 234 | |
| 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 Gudipati | f1d584d | 2010-12-13 16:17:11 -0800 | [diff] [blame] | 242 | ioc->ioc_regs.ioc_fail_sync = (rb + BFA_IOC_FAIL_SYNC); |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 243 | |
Jing Huang | 5fbe25c | 2010-10-18 17:17:23 -0700 | [diff] [blame] | 244 | /* |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 245 | * 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 Gudipati | 816e49b | 2010-03-05 19:36:56 -0800 | [diff] [blame] | 249 | |
| 250 | /* |
| 251 | * err set reg : for notification of hb failure in fcmode |
| 252 | */ |
| 253 | ioc->ioc_regs.err_set = (rb + ERR_SET_REG); |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 254 | } |
| 255 | |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 256 | static void |
| 257 | bfa_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 Gudipati | 8b070b4 | 2011-06-13 15:52:40 -0700 | [diff] [blame] | 269 | ioc->ioc_regs.lpu_read_stat = rb + ct2_reg[port].lpu_read; |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 270 | |
| 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 Gudipati | 775c774 | 2011-06-13 15:52:12 -0700 | [diff] [blame] | 299 | 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 Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 301 | |
| 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 Huang | 5fbe25c | 2010-10-18 17:17:23 -0700 | [diff] [blame] | 314 | /* |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 315 | * Initialize IOC to port mapping. |
| 316 | */ |
| 317 | |
| 318 | #define FNC_PERS_FN_SHIFT(__fn) ((__fn) * 8) |
| 319 | static void |
| 320 | bfa_ioc_ct_map_port(struct bfa_ioc_s *ioc) |
| 321 | { |
Jing Huang | 5344026 | 2010-10-18 17:12:29 -0700 | [diff] [blame] | 322 | void __iomem *rb = ioc->pcidev.pci_bar_kva; |
Krishna Gudipati | d1c61f8 | 2010-03-05 19:38:44 -0800 | [diff] [blame] | 323 | u32 r32; |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 324 | |
Jing Huang | 5fbe25c | 2010-10-18 17:17:23 -0700 | [diff] [blame] | 325 | /* |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 326 | * For catapult, base port id on personality register and IOC type |
| 327 | */ |
Jing Huang | 5344026 | 2010-10-18 17:12:29 -0700 | [diff] [blame] | 328 | r32 = readl(rb + FNC_PERS_REG); |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 329 | 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 Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 336 | static void |
| 337 | bfa_ioc_ct2_map_port(struct bfa_ioc_s *ioc) |
| 338 | { |
Krishna Gudipati | 5a0adae | 2011-06-24 20:22:56 -0700 | [diff] [blame] | 339 | 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 Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 344 | |
| 345 | bfa_trc(ioc, bfa_ioc_pcifn(ioc)); |
| 346 | bfa_trc(ioc, ioc->port_id); |
| 347 | } |
| 348 | |
Jing Huang | 5fbe25c | 2010-10-18 17:17:23 -0700 | [diff] [blame] | 349 | /* |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 350 | * Set interrupt mode for a function: INTX or MSIX |
| 351 | */ |
| 352 | static void |
| 353 | bfa_ioc_ct_isr_mode_set(struct bfa_ioc_s *ioc, bfa_boolean_t msix) |
| 354 | { |
Jing Huang | 5344026 | 2010-10-18 17:12:29 -0700 | [diff] [blame] | 355 | void __iomem *rb = ioc->pcidev.pci_bar_kva; |
Krishna Gudipati | d1c61f8 | 2010-03-05 19:38:44 -0800 | [diff] [blame] | 356 | u32 r32, mode; |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 357 | |
Jing Huang | 5344026 | 2010-10-18 17:12:29 -0700 | [diff] [blame] | 358 | r32 = readl(rb + FNC_PERS_REG); |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 359 | bfa_trc(ioc, r32); |
| 360 | |
| 361 | mode = (r32 >> FNC_PERS_FN_SHIFT(bfa_ioc_pcifn(ioc))) & |
| 362 | __F0_INTX_STATUS; |
| 363 | |
Jing Huang | 5fbe25c | 2010-10-18 17:17:23 -0700 | [diff] [blame] | 364 | /* |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 365 | * If already in desired mode, do not change anything |
| 366 | */ |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 367 | if ((!msix && mode) || (msix && !mode)) |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 368 | 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 Huang | 5344026 | 2010-10-18 17:12:29 -0700 | [diff] [blame] | 379 | writel(r32, rb + FNC_PERS_REG); |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 380 | } |
| 381 | |
Krishna Gudipati | 8b070b4 | 2011-06-13 15:52:40 -0700 | [diff] [blame] | 382 | bfa_boolean_t |
| 383 | bfa_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 Huang | 5fbe25c | 2010-10-18 17:17:23 -0700 | [diff] [blame] | 396 | /* |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 397 | * Cleanup hw semaphore and usecnt registers |
| 398 | */ |
| 399 | static void |
| 400 | bfa_ioc_ct_ownership_reset(struct bfa_ioc_s *ioc) |
| 401 | { |
| 402 | |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 403 | if (bfa_ioc_is_cna(ioc)) { |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 404 | bfa_ioc_sem_get(ioc->ioc_regs.ioc_usage_sem_reg); |
Jing Huang | 5344026 | 2010-10-18 17:12:29 -0700 | [diff] [blame] | 405 | writel(0, ioc->ioc_regs.ioc_usage_reg); |
Krishna Gudipati | 5a0adae | 2011-06-24 20:22:56 -0700 | [diff] [blame] | 406 | readl(ioc->ioc_regs.ioc_usage_sem_reg); |
Maggie Zhang | f7f7381 | 2010-12-09 19:08:43 -0800 | [diff] [blame] | 407 | writel(1, ioc->ioc_regs.ioc_usage_sem_reg); |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 408 | } |
| 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 Huang | 5344026 | 2010-10-18 17:12:29 -0700 | [diff] [blame] | 415 | readl(ioc->ioc_regs.ioc_sem_reg); |
Maggie Zhang | f7f7381 | 2010-12-09 19:08:43 -0800 | [diff] [blame] | 416 | writel(1, ioc->ioc_regs.ioc_sem_reg); |
Krishna Gudipati | 0a20de4 | 2010-03-05 19:34:20 -0800 | [diff] [blame] | 417 | } |
Krishna Gudipati | a36c61f | 2010-09-15 11:50:55 -0700 | [diff] [blame] | 418 | |
Jing Huang | 45d7f0c | 2011-04-13 11:45:53 -0700 | [diff] [blame] | 419 | static bfa_boolean_t |
| 420 | bfa_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 Huang | 8f4bfad | 2010-12-26 21:50:10 -0800 | [diff] [blame] | 443 | /* |
Krishna Gudipati | f1d584d | 2010-12-13 16:17:11 -0800 | [diff] [blame] | 444 | * Synchronized IOC failure processing routines |
| 445 | */ |
| 446 | static void |
| 447 | bfa_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 Gudipati | a36c61f | 2010-09-15 11:50:55 -0700 | [diff] [blame] | 451 | |
Krishna Gudipati | f1d584d | 2010-12-13 16:17:11 -0800 | [diff] [blame] | 452 | writel((r32 | sync_pos), ioc->ioc_regs.ioc_fail_sync); |
| 453 | } |
| 454 | |
| 455 | static void |
| 456 | bfa_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 | |
| 465 | static void |
| 466 | bfa_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 | |
| 474 | static bfa_boolean_t |
| 475 | bfa_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 Huang | 8f4bfad | 2010-12-26 21:50:10 -0800 | [diff] [blame] | 485 | /* |
Krishna Gudipati | f1d584d | 2010-12-13 16:17:11 -0800 | [diff] [blame] | 486 | * 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 Huang | 8f4bfad | 2010-12-26 21:50:10 -0800 | [diff] [blame] | 504 | /* |
Krishna Gudipati | f1d584d | 2010-12-13 16:17:11 -0800 | [diff] [blame] | 505 | * 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 Gudipati | a36c61f | 2010-09-15 11:50:55 -0700 | [diff] [blame] | 514 | |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 515 | /** |
| 516 | * Called from bfa_ioc_attach() to map asic specific calls. |
Krishna Gudipati | a36c61f | 2010-09-15 11:50:55 -0700 | [diff] [blame] | 517 | */ |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 518 | static void |
| 519 | bfa_ioc_set_ctx_hwif(struct bfa_ioc_s *ioc, struct bfa_ioc_hwif_s *hwif) |
Krishna Gudipati | a36c61f | 2010-09-15 11:50:55 -0700 | [diff] [blame] | 520 | { |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 521 | 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 Gudipati | a36c61f | 2010-09-15 11:50:55 -0700 | [diff] [blame] | 531 | |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 532 | /** |
| 533 | * Called from bfa_ioc_attach() to map asic specific calls. |
| 534 | */ |
| 535 | void |
| 536 | bfa_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 | */ |
| 550 | void |
| 551 | bfa_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 Gudipati | 8b070b4 | 2011-06-13 15:52:40 -0700 | [diff] [blame] | 558 | hwif_ct2.ioc_lpu_read_stat = bfa_ioc_ct2_lpu_read_stat; |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 559 | hwif_ct2.ioc_isr_mode_set = NULL; |
| 560 | ioc->ioc_hwif = &hwif_ct2; |
| 561 | } |
| 562 | |
| 563 | /* |
Krishna Gudipati | 3fd4598 | 2011-06-24 20:24:08 -0700 | [diff] [blame] | 564 | * Workaround for MSI-X resource allocation for catapult-2 with no asic block |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 565 | */ |
Krishna Gudipati | 3fd4598 | 2011-06-24 20:24:08 -0700 | [diff] [blame] | 566 | #define HOSTFN_MSIX_DEFAULT 64 |
Krishna Gudipati | 10a0737 | 2011-06-24 20:23:38 -0700 | [diff] [blame] | 567 | #define HOSTFN_MSIX_VT_INDEX_MBOX_ERR 0x30138 |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 568 | #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 Gudipati | 10a0737 | 2011-06-24 20:23:38 -0700 | [diff] [blame] | 572 | #define __MSIX_VT_OFST_ 0x000007ff |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 573 | void |
| 574 | bfa_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 Gudipati | 10a0737 | 2011-06-24 20:23:38 -0700 | [diff] [blame] | 580 | if (r32 & __MSIX_VT_NUMVT__MK) { |
| 581 | writel(r32 & __MSIX_VT_OFST_, |
| 582 | rb + HOSTFN_MSIX_VT_INDEX_MBOX_ERR); |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 583 | return; |
Krishna Gudipati | 10a0737 | 2011-06-24 20:23:38 -0700 | [diff] [blame] | 584 | } |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 585 | |
| 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 Gudipati | 10a0737 | 2011-06-24 20:23:38 -0700 | [diff] [blame] | 589 | writel(HOSTFN_MSIX_DEFAULT * bfa_ioc_pcifn(ioc), |
| 590 | rb + HOSTFN_MSIX_VT_INDEX_MBOX_ERR); |
Krishna Gudipati | a36c61f | 2010-09-15 11:50:55 -0700 | [diff] [blame] | 591 | } |
| 592 | |
| 593 | bfa_status_t |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 594 | bfa_ioc_ct_pll_init(void __iomem *rb, enum bfi_asic_mode mode) |
Krishna Gudipati | a36c61f | 2010-09-15 11:50:55 -0700 | [diff] [blame] | 595 | { |
| 596 | u32 pll_sclk, pll_fclk, r32; |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 597 | bfa_boolean_t fcmode = (mode == BFI_ASIC_MODE_FC); |
Krishna Gudipati | a36c61f | 2010-09-15 11:50:55 -0700 | [diff] [blame] | 598 | |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 599 | 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 Gudipati | a36c61f | 2010-09-15 11:50:55 -0700 | [diff] [blame] | 608 | if (fcmode) { |
Jing Huang | 5344026 | 2010-10-18 17:12:29 -0700 | [diff] [blame] | 609 | writel(0, (rb + OP_MODE)); |
| 610 | writel(__APP_EMS_CMLCKSEL | __APP_EMS_REFCKBUFEN2 | |
| 611 | __APP_EMS_CHANNEL_SEL, (rb + ETH_MAC_SER_REG)); |
Krishna Gudipati | a36c61f | 2010-09-15 11:50:55 -0700 | [diff] [blame] | 612 | } else { |
Jing Huang | 5344026 | 2010-10-18 17:12:29 -0700 | [diff] [blame] | 613 | writel(__GLOBAL_FCOE_MODE, (rb + OP_MODE)); |
| 614 | writel(__APP_EMS_REFCKBUFEN1, (rb + ETH_MAC_SER_REG)); |
Krishna Gudipati | a36c61f | 2010-09-15 11:50:55 -0700 | [diff] [blame] | 615 | } |
Jing Huang | 5344026 | 2010-10-18 17:12:29 -0700 | [diff] [blame] | 616 | 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 Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 624 | 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 Huang | 5344026 | 2010-10-18 17:12:29 -0700 | [diff] [blame] | 632 | readl(rb + HOSTFN0_INT_MSK); |
Jing Huang | 6a18b16 | 2010-10-18 17:08:54 -0700 | [diff] [blame] | 633 | udelay(2000); |
Jing Huang | 5344026 | 2010-10-18 17:12:29 -0700 | [diff] [blame] | 634 | writel(0xffffffffU, (rb + HOSTFN0_INT_STATUS)); |
| 635 | writel(0xffffffffU, (rb + HOSTFN1_INT_STATUS)); |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 636 | 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 Gudipati | a36c61f | 2010-09-15 11:50:55 -0700 | [diff] [blame] | 639 | if (!fcmode) { |
Jing Huang | 5344026 | 2010-10-18 17:12:29 -0700 | [diff] [blame] | 640 | writel(__PMM_1T_RESET_P, (rb + PMM_1T_RESET_REG_P0)); |
| 641 | writel(__PMM_1T_RESET_P, (rb + PMM_1T_RESET_REG_P1)); |
Krishna Gudipati | a36c61f | 2010-09-15 11:50:55 -0700 | [diff] [blame] | 642 | } |
Jing Huang | 5344026 | 2010-10-18 17:12:29 -0700 | [diff] [blame] | 643 | r32 = readl((rb + PSS_CTL_REG)); |
Krishna Gudipati | a36c61f | 2010-09-15 11:50:55 -0700 | [diff] [blame] | 644 | r32 &= ~__PSS_LMEM_RESET; |
Jing Huang | 5344026 | 2010-10-18 17:12:29 -0700 | [diff] [blame] | 645 | writel(r32, (rb + PSS_CTL_REG)); |
Jing Huang | 6a18b16 | 2010-10-18 17:08:54 -0700 | [diff] [blame] | 646 | udelay(1000); |
Krishna Gudipati | a36c61f | 2010-09-15 11:50:55 -0700 | [diff] [blame] | 647 | if (!fcmode) { |
Jing Huang | 5344026 | 2010-10-18 17:12:29 -0700 | [diff] [blame] | 648 | writel(0, (rb + PMM_1T_RESET_REG_P0)); |
| 649 | writel(0, (rb + PMM_1T_RESET_REG_P1)); |
Krishna Gudipati | a36c61f | 2010-09-15 11:50:55 -0700 | [diff] [blame] | 650 | } |
| 651 | |
Jing Huang | 5344026 | 2010-10-18 17:12:29 -0700 | [diff] [blame] | 652 | writel(__EDRAM_BISTR_START, (rb + MBIST_CTL_REG)); |
Jing Huang | 6a18b16 | 2010-10-18 17:08:54 -0700 | [diff] [blame] | 653 | udelay(1000); |
Jing Huang | 5344026 | 2010-10-18 17:12:29 -0700 | [diff] [blame] | 654 | r32 = readl((rb + MBIST_STAT_REG)); |
| 655 | writel(0, (rb + MBIST_CTL_REG)); |
Krishna Gudipati | a36c61f | 2010-09-15 11:50:55 -0700 | [diff] [blame] | 656 | return BFA_STATUS_OK; |
| 657 | } |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 658 | |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 659 | static void |
Krishna Gudipati | 10a0737 | 2011-06-24 20:23:38 -0700 | [diff] [blame] | 660 | bfa_ioc_ct2_sclk_init(void __iomem *rb) |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 661 | { |
| 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 Gudipati | 10a0737 | 2011-06-24 20:23:38 -0700 | [diff] [blame] | 674 | * Ignore mode and program for the max clock (which is FC16) |
| 675 | * Firmware/NFC will do the PLL init appropiately |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 676 | */ |
| 677 | r32 = readl((rb + CT2_APP_PLL_SCLK_CTL_REG)); |
| 678 | r32 &= ~(__APP_PLL_SCLK_REFCLK_SEL | __APP_PLL_SCLK_CLK_DIV2); |
Krishna Gudipati | 10a0737 | 2011-06-24 20:23:38 -0700 | [diff] [blame] | 679 | writel(r32, (rb + CT2_APP_PLL_SCLK_CTL_REG)); |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 680 | |
| 681 | /* |
Krishna Gudipati | 775c774 | 2011-06-13 15:52:12 -0700 | [diff] [blame] | 682 | * while doing PLL init dont clock gate ethernet subsystem |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 683 | */ |
Krishna Gudipati | 775c774 | 2011-06-13 15:52:12 -0700 | [diff] [blame] | 684 | r32 = readl((rb + CT2_CHIP_MISC_PRG)); |
| 685 | writel(r32 | __ETH_CLK_ENABLE_PORT0, (rb + CT2_CHIP_MISC_PRG)); |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 686 | |
Krishna Gudipati | 775c774 | 2011-06-13 15:52:12 -0700 | [diff] [blame] | 687 | r32 = readl((rb + CT2_PCIE_MISC_REG)); |
| 688 | writel(r32 | __ETH_CLK_ENABLE_PORT1, (rb + CT2_PCIE_MISC_REG)); |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 689 | |
| 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 Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 702 | } |
| 703 | |
| 704 | static void |
Krishna Gudipati | 10a0737 | 2011-06-24 20:23:38 -0700 | [diff] [blame] | 705 | bfa_ioc_ct2_lclk_init(void __iomem *rb) |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 706 | { |
| 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 Gudipati | 10a0737 | 2011-06-24 20:23:38 -0700 | [diff] [blame] | 719 | * set LPU speed (set for FC16 which will work for other modes) |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 720 | */ |
| 721 | r32 = readl((rb + CT2_CHIP_MISC_PRG)); |
Krishna Gudipati | 10a0737 | 2011-06-24 20:23:38 -0700 | [diff] [blame] | 722 | writel(r32, (rb + CT2_CHIP_MISC_PRG)); |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 723 | |
| 724 | /* |
Krishna Gudipati | 10a0737 | 2011-06-24 20:23:38 -0700 | [diff] [blame] | 725 | * set LPU half speed (set for FC16 which will work for other modes) |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 726 | */ |
| 727 | r32 = readl((rb + CT2_APP_PLL_LCLK_CTL_REG)); |
Krishna Gudipati | 10a0737 | 2011-06-24 20:23:38 -0700 | [diff] [blame] | 728 | writel(r32, (rb + CT2_APP_PLL_LCLK_CTL_REG)); |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 729 | |
| 730 | /* |
Krishna Gudipati | 10a0737 | 2011-06-24 20:23:38 -0700 | [diff] [blame] | 731 | * set lclk for mode (set for FC16) |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 732 | */ |
| 733 | r32 = readl((rb + CT2_APP_PLL_LCLK_CTL_REG)); |
| 734 | r32 &= (__P_LCLK_PLL_LOCK | __APP_LPUCLK_HALFSPEED); |
Krishna Gudipati | 10a0737 | 2011-06-24 20:23:38 -0700 | [diff] [blame] | 735 | r32 |= 0x20c1731b; |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 736 | 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 Gudipati | 10a0737 | 2011-06-24 20:23:38 -0700 | [diff] [blame] | 742 | } |
| 743 | |
| 744 | static void |
| 745 | bfa_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 | |
| 759 | void |
| 760 | bfa_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 Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 773 | |
| 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 Gudipati | 10a0737 | 2011-06-24 20:23:38 -0700 | [diff] [blame] | 780 | |
| 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 Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 786 | } |
| 787 | |
Krishna Gudipati | 10a0737 | 2011-06-24 20:23:38 -0700 | [diff] [blame] | 788 | #define CT2_NFC_MAX_DELAY 1000 |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 789 | bfa_status_t |
| 790 | bfa_ioc_ct2_pll_init(void __iomem *rb, enum bfi_asic_mode mode) |
| 791 | { |
Krishna Gudipati | 10a0737 | 2011-06-24 20:23:38 -0700 | [diff] [blame] | 792 | u32 wgn, r32; |
| 793 | int i; |
Krishna Gudipati | 8b070b4 | 2011-06-13 15:52:40 -0700 | [diff] [blame] | 794 | |
| 795 | /* |
| 796 | * Initialize PLL if not already done by NFC |
| 797 | */ |
Krishna Gudipati | 10a0737 | 2011-06-24 20:23:38 -0700 | [diff] [blame] | 798 | wgn = readl(rb + CT2_WGN_STATUS); |
| 799 | if (!(wgn & __GLBL_PF_VF_CFG_RDY)) { |
| 800 | writel(__HALT_NFC_CONTROLLER, rb + CT2_NFC_CSR_SET_REG); |
| 801 | for (i = 0; i < CT2_NFC_MAX_DELAY; i++) { |
| 802 | r32 = readl(rb + CT2_NFC_CSR_SET_REG); |
| 803 | if (r32 & __NFC_CONTROLLER_HALTED) |
| 804 | break; |
| 805 | udelay(1000); |
| 806 | } |
| 807 | } |
Krishna Gudipati | 8b070b4 | 2011-06-13 15:52:40 -0700 | [diff] [blame] | 808 | |
Krishna Gudipati | 10a0737 | 2011-06-24 20:23:38 -0700 | [diff] [blame] | 809 | /* |
| 810 | * Mask the interrupts and clear any |
| 811 | * pending interrupts. |
| 812 | */ |
| 813 | writel(1, (rb + CT2_LPU0_HOSTFN_MBOX0_MSK)); |
| 814 | writel(1, (rb + CT2_LPU1_HOSTFN_MBOX0_MSK)); |
Krishna Gudipati | 8b070b4 | 2011-06-13 15:52:40 -0700 | [diff] [blame] | 815 | |
Krishna Gudipati | 10a0737 | 2011-06-24 20:23:38 -0700 | [diff] [blame] | 816 | r32 = readl((rb + CT2_LPU0_HOSTFN_CMD_STAT)); |
| 817 | if (r32 == 1) { |
| 818 | writel(1, (rb + CT2_LPU0_HOSTFN_CMD_STAT)); |
| 819 | readl((rb + CT2_LPU0_HOSTFN_CMD_STAT)); |
| 820 | } |
| 821 | r32 = readl((rb + CT2_LPU1_HOSTFN_CMD_STAT)); |
| 822 | if (r32 == 1) { |
| 823 | writel(1, (rb + CT2_LPU1_HOSTFN_CMD_STAT)); |
| 824 | readl((rb + CT2_LPU1_HOSTFN_CMD_STAT)); |
| 825 | } |
| 826 | |
| 827 | bfa_ioc_ct2_mac_reset(rb); |
| 828 | bfa_ioc_ct2_sclk_init(rb); |
| 829 | bfa_ioc_ct2_lclk_init(rb); |
| 830 | |
| 831 | /* |
| 832 | * release soft reset on s_clk & l_clk |
| 833 | */ |
| 834 | r32 = readl((rb + CT2_APP_PLL_SCLK_CTL_REG)); |
| 835 | writel(r32 & ~__APP_PLL_SCLK_LOGIC_SOFT_RESET, |
| 836 | (rb + CT2_APP_PLL_SCLK_CTL_REG)); |
| 837 | |
| 838 | /* |
| 839 | * release soft reset on s_clk & l_clk |
| 840 | */ |
| 841 | r32 = readl((rb + CT2_APP_PLL_LCLK_CTL_REG)); |
| 842 | writel(r32 & ~__APP_PLL_LCLK_LOGIC_SOFT_RESET, |
| 843 | (rb + CT2_APP_PLL_LCLK_CTL_REG)); |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 844 | |
Krishna Gudipati | 775c774 | 2011-06-13 15:52:12 -0700 | [diff] [blame] | 845 | /* |
Krishna Gudipati | 8b070b4 | 2011-06-13 15:52:40 -0700 | [diff] [blame] | 846 | * Announce flash device presence, if flash was corrupted. |
Krishna Gudipati | 775c774 | 2011-06-13 15:52:12 -0700 | [diff] [blame] | 847 | */ |
Krishna Gudipati | 10a0737 | 2011-06-24 20:23:38 -0700 | [diff] [blame] | 848 | if (wgn == (__WGN_READY | __GLBL_PF_VF_CFG_RDY)) { |
| 849 | r32 = readl((rb + PSS_GPIO_OUT_REG)); |
| 850 | writel(r32 & ~1, (rb + PSS_GPIO_OUT_REG)); |
| 851 | r32 = readl((rb + PSS_GPIO_OE_REG)); |
| 852 | writel(r32 | 1, (rb + PSS_GPIO_OE_REG)); |
Krishna Gudipati | 8b070b4 | 2011-06-13 15:52:40 -0700 | [diff] [blame] | 853 | } |
Krishna Gudipati | 775c774 | 2011-06-13 15:52:12 -0700 | [diff] [blame] | 854 | |
Krishna Gudipati | 10a0737 | 2011-06-24 20:23:38 -0700 | [diff] [blame] | 855 | bfa_ioc_ct2_mem_init(rb); |
| 856 | |
Krishna Gudipati | 1118920 | 2011-06-13 15:50:35 -0700 | [diff] [blame] | 857 | writel(BFI_IOC_UNINIT, (rb + CT2_BFA_IOC0_STATE_REG)); |
| 858 | writel(BFI_IOC_UNINIT, (rb + CT2_BFA_IOC1_STATE_REG)); |
| 859 | return BFA_STATUS_OK; |
| 860 | } |