blob: 9270d15ff1a4977817bd24215f4f8ccbaf3a7c3c [file] [log] [blame]
Andy Yan20b09c22009-05-08 17:46:40 -04001/*
2 * Marvell 88SE94xx hardware specific
3 *
4 * Copyright 2007 Red Hat, Inc.
5 * Copyright 2008 Marvell. <kewei@marvell.com>
Xiangliang Yu0b15fb12011-04-26 06:36:51 -07006 * Copyright 2009-2011 Marvell. <yuxiangl@marvell.com>
Andy Yan20b09c22009-05-08 17:46:40 -04007 *
8 * This file is licensed under GPLv2.
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation; version 2 of the
13 * License.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
23 * USA
24*/
25
26#include "mv_sas.h"
27#include "mv_94xx.h"
28#include "mv_chips.h"
29
30static void mvs_94xx_detect_porttype(struct mvs_info *mvi, int i)
31{
32 u32 reg;
33 struct mvs_phy *phy = &mvi->phy[i];
34 u32 phy_status;
35
36 mvs_write_port_vsr_addr(mvi, i, VSR_PHY_MODE3);
37 reg = mvs_read_port_vsr_data(mvi, i);
38 phy_status = ((reg & 0x3f0000) >> 16) & 0xff;
39 phy->phy_type &= ~(PORT_TYPE_SAS | PORT_TYPE_SATA);
40 switch (phy_status) {
41 case 0x10:
42 phy->phy_type |= PORT_TYPE_SAS;
43 break;
44 case 0x1d:
45 default:
46 phy->phy_type |= PORT_TYPE_SATA;
47 break;
48 }
49}
50
Xiangliang Yuf1f82a92011-05-24 22:28:31 +080051void set_phy_tuning(struct mvs_info *mvi, int phy_id,
52 struct phy_tuning phy_tuning)
53{
54 u32 tmp, setting_0 = 0, setting_1 = 0;
55 u8 i;
56
57 /* Remap information for B0 chip:
58 *
59 * R0Ch -> R118h[15:0] (Adapted DFE F3 - F5 coefficient)
60 * R0Dh -> R118h[31:16] (Generation 1 Setting 0)
61 * R0Eh -> R11Ch[15:0] (Generation 1 Setting 1)
62 * R0Fh -> R11Ch[31:16] (Generation 2 Setting 0)
63 * R10h -> R120h[15:0] (Generation 2 Setting 1)
64 * R11h -> R120h[31:16] (Generation 3 Setting 0)
65 * R12h -> R124h[15:0] (Generation 3 Setting 1)
66 * R13h -> R124h[31:16] (Generation 4 Setting 0 (Reserved))
67 */
68
69 /* A0 has a different set of registers */
70 if (mvi->pdev->revision == VANIR_A0_REV)
71 return;
72
73 for (i = 0; i < 3; i++) {
74 /* loop 3 times, set Gen 1, Gen 2, Gen 3 */
75 switch (i) {
76 case 0:
77 setting_0 = GENERATION_1_SETTING;
78 setting_1 = GENERATION_1_2_SETTING;
79 break;
80 case 1:
81 setting_0 = GENERATION_1_2_SETTING;
82 setting_1 = GENERATION_2_3_SETTING;
83 break;
84 case 2:
85 setting_0 = GENERATION_2_3_SETTING;
86 setting_1 = GENERATION_3_4_SETTING;
87 break;
88 }
89
90 /* Set:
91 *
92 * Transmitter Emphasis Enable
93 * Transmitter Emphasis Amplitude
94 * Transmitter Amplitude
95 */
96 mvs_write_port_vsr_addr(mvi, phy_id, setting_0);
97 tmp = mvs_read_port_vsr_data(mvi, phy_id);
98 tmp &= ~(0xFBE << 16);
99 tmp |= (((phy_tuning.trans_emp_en << 11) |
100 (phy_tuning.trans_emp_amp << 7) |
101 (phy_tuning.trans_amp << 1)) << 16);
102 mvs_write_port_vsr_data(mvi, phy_id, tmp);
103
104 /* Set Transmitter Amplitude Adjust */
105 mvs_write_port_vsr_addr(mvi, phy_id, setting_1);
106 tmp = mvs_read_port_vsr_data(mvi, phy_id);
107 tmp &= ~(0xC000);
108 tmp |= (phy_tuning.trans_amp_adj << 14);
109 mvs_write_port_vsr_data(mvi, phy_id, tmp);
110 }
111}
112
113void set_phy_ffe_tuning(struct mvs_info *mvi, int phy_id,
114 struct ffe_control ffe)
115{
116 u32 tmp;
117
118 /* Don't run this if A0/B0 */
119 if ((mvi->pdev->revision == VANIR_A0_REV)
120 || (mvi->pdev->revision == VANIR_B0_REV))
121 return;
122
123 /* FFE Resistor and Capacitor */
124 /* R10Ch DFE Resolution Control/Squelch and FFE Setting
125 *
126 * FFE_FORCE [7]
127 * FFE_RES_SEL [6:4]
128 * FFE_CAP_SEL [3:0]
129 */
130 mvs_write_port_vsr_addr(mvi, phy_id, VSR_PHY_FFE_CONTROL);
131 tmp = mvs_read_port_vsr_data(mvi, phy_id);
132 tmp &= ~0xFF;
133
134 /* Read from HBA_Info_Page */
135 tmp |= ((0x1 << 7) |
136 (ffe.ffe_rss_sel << 4) |
137 (ffe.ffe_cap_sel << 0));
138
139 mvs_write_port_vsr_data(mvi, phy_id, tmp);
140
141 /* R064h PHY Mode Register 1
142 *
143 * DFE_DIS 18
144 */
145 mvs_write_port_vsr_addr(mvi, phy_id, VSR_REF_CLOCK_CRTL);
146 tmp = mvs_read_port_vsr_data(mvi, phy_id);
147 tmp &= ~0x40001;
148 /* Hard coding */
149 /* No defines in HBA_Info_Page */
150 tmp |= (0 << 18);
151 mvs_write_port_vsr_data(mvi, phy_id, tmp);
152
153 /* R110h DFE F0-F1 Coefficient Control/DFE Update Control
154 *
155 * DFE_UPDATE_EN [11:6]
156 * DFE_FX_FORCE [5:0]
157 */
158 mvs_write_port_vsr_addr(mvi, phy_id, VSR_PHY_DFE_UPDATE_CRTL);
159 tmp = mvs_read_port_vsr_data(mvi, phy_id);
160 tmp &= ~0xFFF;
161 /* Hard coding */
162 /* No defines in HBA_Info_Page */
163 tmp |= ((0x3F << 6) | (0x0 << 0));
164 mvs_write_port_vsr_data(mvi, phy_id, tmp);
165
166 /* R1A0h Interface and Digital Reference Clock Control/Reserved_50h
167 *
168 * FFE_TRAIN_EN 3
169 */
170 mvs_write_port_vsr_addr(mvi, phy_id, VSR_REF_CLOCK_CRTL);
171 tmp = mvs_read_port_vsr_data(mvi, phy_id);
172 tmp &= ~0x8;
173 /* Hard coding */
174 /* No defines in HBA_Info_Page */
175 tmp |= (0 << 3);
176 mvs_write_port_vsr_data(mvi, phy_id, tmp);
177}
178
179/*Notice: this function must be called when phy is disabled*/
180void set_phy_rate(struct mvs_info *mvi, int phy_id, u8 rate)
181{
182 union reg_phy_cfg phy_cfg, phy_cfg_tmp;
183 mvs_write_port_vsr_addr(mvi, phy_id, VSR_PHY_MODE2);
184 phy_cfg_tmp.v = mvs_read_port_vsr_data(mvi, phy_id);
185 phy_cfg.v = 0;
186 phy_cfg.u.disable_phy = phy_cfg_tmp.u.disable_phy;
187 phy_cfg.u.sas_support = 1;
188 phy_cfg.u.sata_support = 1;
189 phy_cfg.u.sata_host_mode = 1;
190
191 switch (rate) {
192 case 0x0:
193 /* support 1.5 Gbps */
194 phy_cfg.u.speed_support = 1;
195 phy_cfg.u.snw_3_support = 0;
196 phy_cfg.u.tx_lnk_parity = 1;
197 phy_cfg.u.tx_spt_phs_lnk_rate = 0x30;
198 break;
199 case 0x1:
200
201 /* support 1.5, 3.0 Gbps */
202 phy_cfg.u.speed_support = 3;
203 phy_cfg.u.tx_spt_phs_lnk_rate = 0x3c;
204 phy_cfg.u.tx_lgcl_lnk_rate = 0x08;
205 break;
206 case 0x2:
207 default:
208 /* support 1.5, 3.0, 6.0 Gbps */
209 phy_cfg.u.speed_support = 7;
210 phy_cfg.u.snw_3_support = 1;
211 phy_cfg.u.tx_lnk_parity = 1;
212 phy_cfg.u.tx_spt_phs_lnk_rate = 0x3f;
213 phy_cfg.u.tx_lgcl_lnk_rate = 0x09;
214 break;
215 }
216 mvs_write_port_vsr_data(mvi, phy_id, phy_cfg.v);
217}
218
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800219static void mvs_94xx_config_reg_from_hba(struct mvs_info *mvi, int phy_id)
Xiangliang Yuf1f82a92011-05-24 22:28:31 +0800220{
221 u32 temp;
222 temp = (u32)(*(u32 *)&mvi->hba_info_param.phy_tuning[phy_id]);
223 if (temp == 0xFFFFFFFFL) {
224 mvi->hba_info_param.phy_tuning[phy_id].trans_emp_amp = 0x6;
225 mvi->hba_info_param.phy_tuning[phy_id].trans_amp = 0x1A;
226 mvi->hba_info_param.phy_tuning[phy_id].trans_amp_adj = 0x3;
227 }
228
229 temp = (u8)(*(u8 *)&mvi->hba_info_param.ffe_ctl[phy_id]);
230 if (temp == 0xFFL) {
231 switch (mvi->pdev->revision) {
232 case VANIR_A0_REV:
233 case VANIR_B0_REV:
234 mvi->hba_info_param.ffe_ctl[phy_id].ffe_rss_sel = 0x7;
235 mvi->hba_info_param.ffe_ctl[phy_id].ffe_cap_sel = 0x7;
236 break;
237 case VANIR_C0_REV:
238 case VANIR_C1_REV:
239 case VANIR_C2_REV:
240 default:
241 mvi->hba_info_param.ffe_ctl[phy_id].ffe_rss_sel = 0x7;
242 mvi->hba_info_param.ffe_ctl[phy_id].ffe_cap_sel = 0xC;
243 break;
244 }
245 }
246
247 temp = (u8)(*(u8 *)&mvi->hba_info_param.phy_rate[phy_id]);
248 if (temp == 0xFFL)
249 /*set default phy_rate = 6Gbps*/
250 mvi->hba_info_param.phy_rate[phy_id] = 0x2;
251
252 set_phy_tuning(mvi, phy_id,
253 mvi->hba_info_param.phy_tuning[phy_id]);
254 set_phy_ffe_tuning(mvi, phy_id,
255 mvi->hba_info_param.ffe_ctl[phy_id]);
256 set_phy_rate(mvi, phy_id,
257 mvi->hba_info_param.phy_rate[phy_id]);
258}
259
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800260static void mvs_94xx_enable_xmt(struct mvs_info *mvi, int phy_id)
Andy Yan20b09c22009-05-08 17:46:40 -0400261{
262 void __iomem *regs = mvi->regs;
263 u32 tmp;
264
265 tmp = mr32(MVS_PCS);
266 tmp |= 1 << (phy_id + PCS_EN_PORT_XMT_SHIFT2);
267 mw32(MVS_PCS, tmp);
268}
269
270static void mvs_94xx_phy_reset(struct mvs_info *mvi, u32 phy_id, int hard)
271{
272 u32 tmp;
Xiangliang Yu84fbd0c2011-05-24 22:37:25 +0800273 u32 delay = 5000;
274 if (hard == MVS_PHY_TUNE) {
275 mvs_write_port_cfg_addr(mvi, phy_id, PHYR_SATA_CTL);
276 tmp = mvs_read_port_cfg_data(mvi, phy_id);
277 mvs_write_port_cfg_data(mvi, phy_id, tmp|0x20000000);
278 mvs_write_port_cfg_data(mvi, phy_id, tmp|0x100000);
279 return;
280 }
Andy Yan20b09c22009-05-08 17:46:40 -0400281 tmp = mvs_read_port_irq_stat(mvi, phy_id);
282 tmp &= ~PHYEV_RDY_CH;
283 mvs_write_port_irq_stat(mvi, phy_id, tmp);
284 if (hard) {
285 tmp = mvs_read_phy_ctl(mvi, phy_id);
286 tmp |= PHY_RST_HARD;
287 mvs_write_phy_ctl(mvi, phy_id, tmp);
288 do {
289 tmp = mvs_read_phy_ctl(mvi, phy_id);
Xiangliang Yu84fbd0c2011-05-24 22:37:25 +0800290 udelay(10);
291 delay--;
292 } while ((tmp & PHY_RST_HARD) && delay);
293 if (!delay)
294 mv_dprintk("phy hard reset failed.\n");
Andy Yan20b09c22009-05-08 17:46:40 -0400295 } else {
Xiangliang Yu84fbd0c2011-05-24 22:37:25 +0800296 tmp = mvs_read_phy_ctl(mvi, phy_id);
Andy Yan20b09c22009-05-08 17:46:40 -0400297 tmp |= PHY_RST;
Xiangliang Yu84fbd0c2011-05-24 22:37:25 +0800298 mvs_write_phy_ctl(mvi, phy_id, tmp);
Andy Yan20b09c22009-05-08 17:46:40 -0400299 }
300}
301
302static void mvs_94xx_phy_disable(struct mvs_info *mvi, u32 phy_id)
303{
304 u32 tmp;
305 mvs_write_port_vsr_addr(mvi, phy_id, VSR_PHY_MODE2);
306 tmp = mvs_read_port_vsr_data(mvi, phy_id);
307 mvs_write_port_vsr_data(mvi, phy_id, tmp | 0x00800000);
308}
309
310static void mvs_94xx_phy_enable(struct mvs_info *mvi, u32 phy_id)
311{
Xiangliang Yuf1f82a92011-05-24 22:28:31 +0800312 u32 tmp;
313 u8 revision = 0;
314
315 revision = mvi->pdev->revision;
316 if (revision == VANIR_A0_REV) {
317 mvs_write_port_vsr_addr(mvi, phy_id, CMD_HOST_RD_DATA);
318 mvs_write_port_vsr_data(mvi, phy_id, 0x8300ffc1);
319 }
320 if (revision == VANIR_B0_REV) {
321 mvs_write_port_vsr_addr(mvi, phy_id, CMD_APP_MEM_CTL);
322 mvs_write_port_vsr_data(mvi, phy_id, 0x08001006);
323 mvs_write_port_vsr_addr(mvi, phy_id, CMD_HOST_RD_DATA);
324 mvs_write_port_vsr_data(mvi, phy_id, 0x0000705f);
325 }
326
Andy Yan20b09c22009-05-08 17:46:40 -0400327 mvs_write_port_vsr_addr(mvi, phy_id, VSR_PHY_MODE2);
Xiangliang Yuf1f82a92011-05-24 22:28:31 +0800328 tmp = mvs_read_port_vsr_data(mvi, phy_id);
329 tmp |= bit(0);
330 mvs_write_port_vsr_data(mvi, phy_id, tmp & 0xfd7fffff);
Andy Yan20b09c22009-05-08 17:46:40 -0400331}
332
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800333static int mvs_94xx_init(struct mvs_info *mvi)
Andy Yan20b09c22009-05-08 17:46:40 -0400334{
335 void __iomem *regs = mvi->regs;
336 int i;
337 u32 tmp, cctl;
Xiangliang Yuf1f82a92011-05-24 22:28:31 +0800338 u8 revision;
Andy Yan20b09c22009-05-08 17:46:40 -0400339
Xiangliang Yuf1f82a92011-05-24 22:28:31 +0800340 revision = mvi->pdev->revision;
Andy Yan20b09c22009-05-08 17:46:40 -0400341 mvs_show_pcie_usage(mvi);
342 if (mvi->flags & MVF_FLAG_SOC) {
343 tmp = mr32(MVS_PHY_CTL);
344 tmp &= ~PCTL_PWR_OFF;
345 tmp |= PCTL_PHY_DSBL;
346 mw32(MVS_PHY_CTL, tmp);
347 }
348
349 /* Init Chip */
350 /* make sure RST is set; HBA_RST /should/ have done that for us */
351 cctl = mr32(MVS_CTL) & 0xFFFF;
352 if (cctl & CCTL_RST)
353 cctl &= ~CCTL_RST;
354 else
355 mw32_f(MVS_CTL, cctl | CCTL_RST);
356
357 if (mvi->flags & MVF_FLAG_SOC) {
358 tmp = mr32(MVS_PHY_CTL);
359 tmp &= ~PCTL_PWR_OFF;
360 tmp |= PCTL_COM_ON;
361 tmp &= ~PCTL_PHY_DSBL;
362 tmp |= PCTL_LINK_RST;
363 mw32(MVS_PHY_CTL, tmp);
364 msleep(100);
365 tmp &= ~PCTL_LINK_RST;
366 mw32(MVS_PHY_CTL, tmp);
367 msleep(100);
368 }
369
Xiangliang Yuf1f82a92011-05-24 22:28:31 +0800370 /* disable Multiplexing, enable phy implemented */
371 mw32(MVS_PORTS_IMP, 0xFF);
372
373 if (revision == VANIR_A0_REV) {
374 mw32(MVS_PA_VSR_ADDR, CMD_CMWK_OOB_DET);
375 mw32(MVS_PA_VSR_PORT, 0x00018080);
376 }
377 mw32(MVS_PA_VSR_ADDR, VSR_PHY_MODE2);
378 if (revision == VANIR_A0_REV || revision == VANIR_B0_REV)
379 /* set 6G/3G/1.5G, multiplexing, without SSC */
380 mw32(MVS_PA_VSR_PORT, 0x0084d4fe);
381 else
382 /* set 6G/3G/1.5G, multiplexing, with and without SSC */
383 mw32(MVS_PA_VSR_PORT, 0x0084fffe);
384
385 if (revision == VANIR_B0_REV) {
386 mw32(MVS_PA_VSR_ADDR, CMD_APP_MEM_CTL);
387 mw32(MVS_PA_VSR_PORT, 0x08001006);
388 mw32(MVS_PA_VSR_ADDR, CMD_HOST_RD_DATA);
389 mw32(MVS_PA_VSR_PORT, 0x0000705f);
390 }
391
Andy Yan20b09c22009-05-08 17:46:40 -0400392 /* reset control */
393 mw32(MVS_PCS, 0); /* MVS_PCS */
394 mw32(MVS_STP_REG_SET_0, 0);
395 mw32(MVS_STP_REG_SET_1, 0);
396
397 /* init phys */
398 mvs_phy_hacks(mvi);
399
Xiangliang Yu07f098e2011-09-29 00:34:11 -0700400 /* disable non data frame retry */
401 tmp = mvs_cr32(mvi, CMD_SAS_CTL1);
402 if ((revision == VANIR_A0_REV) ||
403 (revision == VANIR_B0_REV) ||
404 (revision == VANIR_C0_REV)) {
405 tmp &= ~0xffff;
406 tmp |= 0x007f;
407 mvs_cw32(mvi, CMD_SAS_CTL1, tmp);
408 }
409
Andy Yan20b09c22009-05-08 17:46:40 -0400410 /* set LED blink when IO*/
Xiangliang Yua4632aa2011-05-24 22:36:02 +0800411 mw32(MVS_PA_VSR_ADDR, VSR_PHY_ACT_LED);
Andy Yan20b09c22009-05-08 17:46:40 -0400412 tmp = mr32(MVS_PA_VSR_PORT);
413 tmp &= 0xFFFF00FF;
414 tmp |= 0x00003300;
415 mw32(MVS_PA_VSR_PORT, tmp);
416
417 mw32(MVS_CMD_LIST_LO, mvi->slot_dma);
418 mw32(MVS_CMD_LIST_HI, (mvi->slot_dma >> 16) >> 16);
419
420 mw32(MVS_RX_FIS_LO, mvi->rx_fis_dma);
421 mw32(MVS_RX_FIS_HI, (mvi->rx_fis_dma >> 16) >> 16);
422
423 mw32(MVS_TX_CFG, MVS_CHIP_SLOT_SZ);
424 mw32(MVS_TX_LO, mvi->tx_dma);
425 mw32(MVS_TX_HI, (mvi->tx_dma >> 16) >> 16);
426
427 mw32(MVS_RX_CFG, MVS_RX_RING_SZ);
428 mw32(MVS_RX_LO, mvi->rx_dma);
429 mw32(MVS_RX_HI, (mvi->rx_dma >> 16) >> 16);
430
431 for (i = 0; i < mvi->chip->n_phy; i++) {
432 mvs_94xx_phy_disable(mvi, i);
433 /* set phy local SAS address */
434 mvs_set_sas_addr(mvi, i, CONFIG_ID_FRAME3, CONFIG_ID_FRAME4,
Xiangliang Yu84fbd0c2011-05-24 22:37:25 +0800435 cpu_to_le64(mvi->phy[i].dev_sas_addr));
Andy Yan20b09c22009-05-08 17:46:40 -0400436
437 mvs_94xx_enable_xmt(mvi, i);
Xiangliang Yuf1f82a92011-05-24 22:28:31 +0800438 mvs_94xx_config_reg_from_hba(mvi, i);
Andy Yan20b09c22009-05-08 17:46:40 -0400439 mvs_94xx_phy_enable(mvi, i);
440
Xiangliang Yua4632aa2011-05-24 22:36:02 +0800441 mvs_94xx_phy_reset(mvi, i, PHY_RST_HARD);
Andy Yan20b09c22009-05-08 17:46:40 -0400442 msleep(500);
443 mvs_94xx_detect_porttype(mvi, i);
444 }
445
446 if (mvi->flags & MVF_FLAG_SOC) {
447 /* set select registers */
448 writel(0x0E008000, regs + 0x000);
449 writel(0x59000008, regs + 0x004);
450 writel(0x20, regs + 0x008);
451 writel(0x20, regs + 0x00c);
452 writel(0x20, regs + 0x010);
453 writel(0x20, regs + 0x014);
454 writel(0x20, regs + 0x018);
455 writel(0x20, regs + 0x01c);
456 }
457 for (i = 0; i < mvi->chip->n_phy; i++) {
458 /* clear phy int status */
459 tmp = mvs_read_port_irq_stat(mvi, i);
460 tmp &= ~PHYEV_SIG_FIS;
461 mvs_write_port_irq_stat(mvi, i, tmp);
462
463 /* set phy int mask */
464 tmp = PHYEV_RDY_CH | PHYEV_BROAD_CH |
465 PHYEV_ID_DONE | PHYEV_DCDR_ERR | PHYEV_CRC_ERR ;
466 mvs_write_port_irq_mask(mvi, i, tmp);
467
468 msleep(100);
469 mvs_update_phyinfo(mvi, i, 1);
470 }
471
Andy Yan20b09c22009-05-08 17:46:40 -0400472 /* little endian for open address and command table, etc. */
Andy Yan20b09c22009-05-08 17:46:40 -0400473 cctl = mr32(MVS_CTL);
474 cctl |= CCTL_ENDIAN_CMD;
Andy Yan20b09c22009-05-08 17:46:40 -0400475 cctl &= ~CCTL_ENDIAN_OPEN;
476 cctl |= CCTL_ENDIAN_RSP;
477 mw32_f(MVS_CTL, cctl);
478
479 /* reset CMD queue */
480 tmp = mr32(MVS_PCS);
481 tmp |= PCS_CMD_RST;
Xiangliang Yu84fbd0c2011-05-24 22:37:25 +0800482 tmp &= ~PCS_SELF_CLEAR;
Andy Yan20b09c22009-05-08 17:46:40 -0400483 mw32(MVS_PCS, tmp);
Xiangliang Yue144f7e2011-05-24 22:38:10 +0800484 /*
485 * the max count is 0x1ff, while our max slot is 0x200,
Andy Yan20b09c22009-05-08 17:46:40 -0400486 * it will make count 0.
487 */
488 tmp = 0;
Xiangliang Yu84fbd0c2011-05-24 22:37:25 +0800489 if (MVS_CHIP_SLOT_SZ > 0x1ff)
490 mw32(MVS_INT_COAL, 0x1ff | COAL_EN);
491 else
492 mw32(MVS_INT_COAL, MVS_CHIP_SLOT_SZ | COAL_EN);
Andy Yan20b09c22009-05-08 17:46:40 -0400493
Xiangliang Yue144f7e2011-05-24 22:38:10 +0800494 /* default interrupt coalescing time is 128us */
Xiangliang Yu83c7b612011-05-24 22:31:47 +0800495 tmp = 0x10000 | interrupt_coalescing;
Andy Yan20b09c22009-05-08 17:46:40 -0400496 mw32(MVS_INT_COAL_TMOUT, tmp);
497
498 /* ladies and gentlemen, start your engines */
499 mw32(MVS_TX_CFG, 0);
500 mw32(MVS_TX_CFG, MVS_CHIP_SLOT_SZ | TX_EN);
501 mw32(MVS_RX_CFG, MVS_RX_RING_SZ | RX_EN);
502 /* enable CMD/CMPL_Q/RESP mode */
503 mw32(MVS_PCS, PCS_SATA_RETRY_2 | PCS_FIS_RX_EN |
504 PCS_CMD_EN | PCS_CMD_STOP_ERR);
505
506 /* enable completion queue interrupt */
507 tmp = (CINT_PORT_MASK | CINT_DONE | CINT_MEM | CINT_SRS | CINT_CI_STOP |
Xiangliang Yu534ff102011-05-24 22:26:50 +0800508 CINT_DMA_PCIE | CINT_NON_SPEC_NCQ_ERROR);
Andy Yan20b09c22009-05-08 17:46:40 -0400509 tmp |= CINT_PHY_MASK;
510 mw32(MVS_INT_MASK, tmp);
511
Xiangliang Yu40d39212011-09-29 00:35:15 -0700512 tmp = mvs_cr32(mvi, CMD_LINK_TIMER);
513 tmp |= 0xFFFF0000;
514 mvs_cw32(mvi, CMD_LINK_TIMER, tmp);
515
Xiangliang Yu3a4b7ef2011-09-29 00:34:55 -0700516 /* tune STP performance */
517 tmp = 0x003F003F;
518 mvs_cw32(mvi, CMD_PL_TIMER, tmp);
519
520 /* This can improve expander large block size seq write performance */
521 tmp = mvs_cr32(mvi, CMD_PORT_LAYER_TIMER1);
522 tmp |= 0xFFFF007F;
523 mvs_cw32(mvi, CMD_PORT_LAYER_TIMER1, tmp);
524
Xiangliang Yuaa117dd2011-09-29 00:34:32 -0700525 /* change the connection open-close behavior (bit 9)
526 * set bit8 to 1 for performance tuning */
527 tmp = mvs_cr32(mvi, CMD_SL_MODE0);
528 tmp |= 0x00000300;
529 /* set bit0 to 0 to enable retry for no_dest reject case */
530 tmp &= 0xFFFFFFFE;
531 mvs_cw32(mvi, CMD_SL_MODE0, tmp);
532
Andy Yan20b09c22009-05-08 17:46:40 -0400533 /* Enable SRS interrupt */
534 mw32(MVS_INT_MASK_SRS_0, 0xFFFF);
535
536 return 0;
537}
538
539static int mvs_94xx_ioremap(struct mvs_info *mvi)
540{
541 if (!mvs_ioremap(mvi, 2, -1)) {
542 mvi->regs_ex = mvi->regs + 0x10200;
543 mvi->regs += 0x20000;
544 if (mvi->id == 1)
545 mvi->regs += 0x4000;
546 return 0;
547 }
548 return -1;
549}
550
551static void mvs_94xx_iounmap(struct mvs_info *mvi)
552{
553 if (mvi->regs) {
554 mvi->regs -= 0x20000;
555 if (mvi->id == 1)
556 mvi->regs -= 0x4000;
557 mvs_iounmap(mvi->regs);
558 }
559}
560
561static void mvs_94xx_interrupt_enable(struct mvs_info *mvi)
562{
563 void __iomem *regs = mvi->regs_ex;
564 u32 tmp;
565
566 tmp = mr32(MVS_GBL_CTL);
Chen Gang8902b102014-05-09 09:19:39 +0800567 tmp |= (MVS_IRQ_SAS_A | MVS_IRQ_SAS_B);
Andy Yan20b09c22009-05-08 17:46:40 -0400568 mw32(MVS_GBL_INT_STAT, tmp);
569 writel(tmp, regs + 0x0C);
570 writel(tmp, regs + 0x10);
571 writel(tmp, regs + 0x14);
572 writel(tmp, regs + 0x18);
573 mw32(MVS_GBL_CTL, tmp);
574}
575
576static void mvs_94xx_interrupt_disable(struct mvs_info *mvi)
577{
578 void __iomem *regs = mvi->regs_ex;
579 u32 tmp;
580
581 tmp = mr32(MVS_GBL_CTL);
582
Chen Gang8902b102014-05-09 09:19:39 +0800583 tmp &= ~(MVS_IRQ_SAS_A | MVS_IRQ_SAS_B);
Andy Yan20b09c22009-05-08 17:46:40 -0400584 mw32(MVS_GBL_INT_STAT, tmp);
585 writel(tmp, regs + 0x0C);
586 writel(tmp, regs + 0x10);
587 writel(tmp, regs + 0x14);
588 writel(tmp, regs + 0x18);
589 mw32(MVS_GBL_CTL, tmp);
590}
591
592static u32 mvs_94xx_isr_status(struct mvs_info *mvi, int irq)
593{
594 void __iomem *regs = mvi->regs_ex;
595 u32 stat = 0;
596 if (!(mvi->flags & MVF_FLAG_SOC)) {
597 stat = mr32(MVS_GBL_INT_STAT);
598
Chen Gang8902b102014-05-09 09:19:39 +0800599 if (!(stat & (MVS_IRQ_SAS_A | MVS_IRQ_SAS_B)))
Andy Yan20b09c22009-05-08 17:46:40 -0400600 return 0;
601 }
602 return stat;
603}
604
605static irqreturn_t mvs_94xx_isr(struct mvs_info *mvi, int irq, u32 stat)
606{
607 void __iomem *regs = mvi->regs;
608
Chen Gang8902b102014-05-09 09:19:39 +0800609 if (((stat & MVS_IRQ_SAS_A) && mvi->id == 0) ||
610 ((stat & MVS_IRQ_SAS_B) && mvi->id == 1)) {
Andy Yan20b09c22009-05-08 17:46:40 -0400611 mw32_f(MVS_INT_STAT, CINT_DONE);
Xiangliang Yu6f8ac162011-06-30 22:27:36 +0800612
Andy Yan20b09c22009-05-08 17:46:40 -0400613 spin_lock(&mvi->lock);
Andy Yan20b09c22009-05-08 17:46:40 -0400614 mvs_int_full(mvi);
Andy Yan20b09c22009-05-08 17:46:40 -0400615 spin_unlock(&mvi->lock);
Andy Yan20b09c22009-05-08 17:46:40 -0400616 }
617 return IRQ_HANDLED;
618}
619
620static void mvs_94xx_command_active(struct mvs_info *mvi, u32 slot_idx)
621{
622 u32 tmp;
Xiangliang Yua4632aa2011-05-24 22:36:02 +0800623 tmp = mvs_cr32(mvi, MVS_COMMAND_ACTIVE+(slot_idx >> 3));
624 if (tmp && 1 << (slot_idx % 32)) {
625 mv_printk("command active %08X, slot [%x].\n", tmp, slot_idx);
626 mvs_cw32(mvi, MVS_COMMAND_ACTIVE + (slot_idx >> 3),
627 1 << (slot_idx % 32));
628 do {
629 tmp = mvs_cr32(mvi,
630 MVS_COMMAND_ACTIVE + (slot_idx >> 3));
631 } while (tmp & 1 << (slot_idx % 32));
632 }
633}
634
635void mvs_94xx_clear_srs_irq(struct mvs_info *mvi, u8 reg_set, u8 clear_all)
636{
637 void __iomem *regs = mvi->regs;
638 u32 tmp;
639
640 if (clear_all) {
641 tmp = mr32(MVS_INT_STAT_SRS_0);
642 if (tmp) {
643 mv_dprintk("check SRS 0 %08X.\n", tmp);
644 mw32(MVS_INT_STAT_SRS_0, tmp);
645 }
646 tmp = mr32(MVS_INT_STAT_SRS_1);
647 if (tmp) {
648 mv_dprintk("check SRS 1 %08X.\n", tmp);
649 mw32(MVS_INT_STAT_SRS_1, tmp);
650 }
651 } else {
652 if (reg_set > 31)
653 tmp = mr32(MVS_INT_STAT_SRS_1);
654 else
655 tmp = mr32(MVS_INT_STAT_SRS_0);
656
657 if (tmp & (1 << (reg_set % 32))) {
658 mv_dprintk("register set 0x%x was stopped.\n", reg_set);
659 if (reg_set > 31)
660 mw32(MVS_INT_STAT_SRS_1, 1 << (reg_set % 32));
661 else
662 mw32(MVS_INT_STAT_SRS_0, 1 << (reg_set % 32));
663 }
664 }
Andy Yan20b09c22009-05-08 17:46:40 -0400665}
666
667static void mvs_94xx_issue_stop(struct mvs_info *mvi, enum mvs_port_type type,
668 u32 tfs)
669{
670 void __iomem *regs = mvi->regs;
671 u32 tmp;
Xiangliang Yua4632aa2011-05-24 22:36:02 +0800672 mvs_94xx_clear_srs_irq(mvi, 0, 1);
Andy Yan20b09c22009-05-08 17:46:40 -0400673
Xiangliang Yua4632aa2011-05-24 22:36:02 +0800674 tmp = mr32(MVS_INT_STAT);
675 mw32(MVS_INT_STAT, tmp | CINT_CI_STOP);
Andy Yan20b09c22009-05-08 17:46:40 -0400676 tmp = mr32(MVS_PCS) | 0xFF00;
677 mw32(MVS_PCS, tmp);
678}
679
Xiangliang Yu534ff102011-05-24 22:26:50 +0800680static void mvs_94xx_non_spec_ncq_error(struct mvs_info *mvi)
681{
682 void __iomem *regs = mvi->regs;
683 u32 err_0, err_1;
684 u8 i;
685 struct mvs_device *device;
686
687 err_0 = mr32(MVS_NON_NCQ_ERR_0);
688 err_1 = mr32(MVS_NON_NCQ_ERR_1);
689
690 mv_dprintk("non specific ncq error err_0:%x,err_1:%x.\n",
691 err_0, err_1);
692 for (i = 0; i < 32; i++) {
693 if (err_0 & bit(i)) {
694 device = mvs_find_dev_by_reg_set(mvi, i);
695 if (device)
696 mvs_release_task(mvi, device->sas_device);
697 }
698 if (err_1 & bit(i)) {
699 device = mvs_find_dev_by_reg_set(mvi, i+32);
700 if (device)
701 mvs_release_task(mvi, device->sas_device);
702 }
703 }
704
705 mw32(MVS_NON_NCQ_ERR_0, err_0);
706 mw32(MVS_NON_NCQ_ERR_1, err_1);
707}
708
Andy Yan20b09c22009-05-08 17:46:40 -0400709static void mvs_94xx_free_reg_set(struct mvs_info *mvi, u8 *tfs)
710{
711 void __iomem *regs = mvi->regs;
Andy Yan20b09c22009-05-08 17:46:40 -0400712 u8 reg_set = *tfs;
713
714 if (*tfs == MVS_ID_NOT_MAPPED)
715 return;
716
717 mvi->sata_reg_set &= ~bit(reg_set);
Xiangliang Yu84fbd0c2011-05-24 22:37:25 +0800718 if (reg_set < 32)
Andy Yan20b09c22009-05-08 17:46:40 -0400719 w_reg_set_enable(reg_set, (u32)mvi->sata_reg_set);
Xiangliang Yu84fbd0c2011-05-24 22:37:25 +0800720 else
721 w_reg_set_enable(reg_set, (u32)(mvi->sata_reg_set >> 32));
Andy Yan20b09c22009-05-08 17:46:40 -0400722
723 *tfs = MVS_ID_NOT_MAPPED;
724
725 return;
726}
727
728static u8 mvs_94xx_assign_reg_set(struct mvs_info *mvi, u8 *tfs)
729{
730 int i;
731 void __iomem *regs = mvi->regs;
732
733 if (*tfs != MVS_ID_NOT_MAPPED)
734 return 0;
735
736 i = mv_ffc64(mvi->sata_reg_set);
Xiangliang Yu84fbd0c2011-05-24 22:37:25 +0800737 if (i >= 32) {
Andy Yan20b09c22009-05-08 17:46:40 -0400738 mvi->sata_reg_set |= bit(i);
739 w_reg_set_enable(i, (u32)(mvi->sata_reg_set >> 32));
740 *tfs = i;
741 return 0;
742 } else if (i >= 0) {
743 mvi->sata_reg_set |= bit(i);
744 w_reg_set_enable(i, (u32)mvi->sata_reg_set);
745 *tfs = i;
746 return 0;
747 }
748 return MVS_ID_NOT_MAPPED;
749}
750
751static void mvs_94xx_make_prd(struct scatterlist *scatter, int nr, void *prd)
752{
753 int i;
754 struct scatterlist *sg;
755 struct mvs_prd *buf_prd = prd;
Xiangliang Yu84fbd0c2011-05-24 22:37:25 +0800756 struct mvs_prd_imt im_len;
757 *(u32 *)&im_len = 0;
Andy Yan20b09c22009-05-08 17:46:40 -0400758 for_each_sg(scatter, sg, nr, i) {
759 buf_prd->addr = cpu_to_le64(sg_dma_address(sg));
Xiangliang Yu84fbd0c2011-05-24 22:37:25 +0800760 im_len.len = sg_dma_len(sg);
761 buf_prd->im_len = cpu_to_le32(*(u32 *)&im_len);
Andy Yan20b09c22009-05-08 17:46:40 -0400762 buf_prd++;
763 }
764}
765
766static int mvs_94xx_oob_done(struct mvs_info *mvi, int i)
767{
768 u32 phy_st;
769 phy_st = mvs_read_phy_ctl(mvi, i);
Xiangliang Yue144f7e2011-05-24 22:38:10 +0800770 if (phy_st & PHY_READY_MASK)
Andy Yan20b09c22009-05-08 17:46:40 -0400771 return 1;
772 return 0;
773}
774
775static void mvs_94xx_get_dev_identify_frame(struct mvs_info *mvi, int port_id,
776 struct sas_identify_frame *id)
777{
778 int i;
779 u32 id_frame[7];
780
781 for (i = 0; i < 7; i++) {
782 mvs_write_port_cfg_addr(mvi, port_id,
783 CONFIG_ID_FRAME0 + i * 4);
Xiangliang Yu84fbd0c2011-05-24 22:37:25 +0800784 id_frame[i] = cpu_to_le32(mvs_read_port_cfg_data(mvi, port_id));
Andy Yan20b09c22009-05-08 17:46:40 -0400785 }
786 memcpy(id, id_frame, 28);
787}
788
789static void mvs_94xx_get_att_identify_frame(struct mvs_info *mvi, int port_id,
790 struct sas_identify_frame *id)
791{
792 int i;
793 u32 id_frame[7];
794
Andy Yan20b09c22009-05-08 17:46:40 -0400795 for (i = 0; i < 7; i++) {
796 mvs_write_port_cfg_addr(mvi, port_id,
797 CONFIG_ATT_ID_FRAME0 + i * 4);
Xiangliang Yu84fbd0c2011-05-24 22:37:25 +0800798 id_frame[i] = cpu_to_le32(mvs_read_port_cfg_data(mvi, port_id));
Andy Yan20b09c22009-05-08 17:46:40 -0400799 mv_dprintk("94xx phy %d atta frame %d %x.\n",
800 port_id + mvi->id * mvi->chip->n_phy, i, id_frame[i]);
801 }
Andy Yan20b09c22009-05-08 17:46:40 -0400802 memcpy(id, id_frame, 28);
803}
804
805static u32 mvs_94xx_make_dev_info(struct sas_identify_frame *id)
806{
807 u32 att_dev_info = 0;
808
809 att_dev_info |= id->dev_type;
810 if (id->stp_iport)
811 att_dev_info |= PORT_DEV_STP_INIT;
812 if (id->smp_iport)
813 att_dev_info |= PORT_DEV_SMP_INIT;
814 if (id->ssp_iport)
815 att_dev_info |= PORT_DEV_SSP_INIT;
816 if (id->stp_tport)
817 att_dev_info |= PORT_DEV_STP_TRGT;
818 if (id->smp_tport)
819 att_dev_info |= PORT_DEV_SMP_TRGT;
820 if (id->ssp_tport)
821 att_dev_info |= PORT_DEV_SSP_TRGT;
822
823 att_dev_info |= (u32)id->phy_id<<24;
824 return att_dev_info;
825}
826
827static u32 mvs_94xx_make_att_info(struct sas_identify_frame *id)
828{
829 return mvs_94xx_make_dev_info(id);
830}
831
832static void mvs_94xx_fix_phy_info(struct mvs_info *mvi, int i,
833 struct sas_identify_frame *id)
834{
835 struct mvs_phy *phy = &mvi->phy[i];
836 struct asd_sas_phy *sas_phy = &phy->sas_phy;
837 mv_dprintk("get all reg link rate is 0x%x\n", phy->phy_status);
838 sas_phy->linkrate =
839 (phy->phy_status & PHY_NEG_SPP_PHYS_LINK_RATE_MASK) >>
840 PHY_NEG_SPP_PHYS_LINK_RATE_MASK_OFFSET;
841 sas_phy->linkrate += 0x8;
842 mv_dprintk("get link rate is %d\n", sas_phy->linkrate);
843 phy->minimum_linkrate = SAS_LINK_RATE_1_5_GBPS;
844 phy->maximum_linkrate = SAS_LINK_RATE_6_0_GBPS;
845 mvs_94xx_get_dev_identify_frame(mvi, i, id);
846 phy->dev_info = mvs_94xx_make_dev_info(id);
847
848 if (phy->phy_type & PORT_TYPE_SAS) {
849 mvs_94xx_get_att_identify_frame(mvi, i, id);
850 phy->att_dev_info = mvs_94xx_make_att_info(id);
851 phy->att_dev_sas_addr = *(u64 *)id->sas_addr;
852 } else {
853 phy->att_dev_info = PORT_DEV_STP_TRGT | 1;
854 }
855
Xiangliang Yu477f6d12011-09-29 00:33:49 -0700856 /* enable spin up bit */
857 mvs_write_port_cfg_addr(mvi, i, PHYR_PHY_STAT);
858 mvs_write_port_cfg_data(mvi, i, 0x04);
859
Andy Yan20b09c22009-05-08 17:46:40 -0400860}
861
862void mvs_94xx_phy_set_link_rate(struct mvs_info *mvi, u32 phy_id,
863 struct sas_phy_linkrates *rates)
864{
Xiangliang Yua4632aa2011-05-24 22:36:02 +0800865 u32 lrmax = 0;
866 u32 tmp;
867
868 tmp = mvs_read_phy_ctl(mvi, phy_id);
869 lrmax = (rates->maximum_linkrate - SAS_LINK_RATE_1_5_GBPS) << 12;
870
871 if (lrmax) {
872 tmp &= ~(0x3 << 12);
873 tmp |= lrmax;
874 }
875 mvs_write_phy_ctl(mvi, phy_id, tmp);
876 mvs_94xx_phy_reset(mvi, phy_id, PHY_RST_HARD);
Andy Yan20b09c22009-05-08 17:46:40 -0400877}
878
879static void mvs_94xx_clear_active_cmds(struct mvs_info *mvi)
880{
881 u32 tmp;
882 void __iomem *regs = mvi->regs;
883 tmp = mr32(MVS_STP_REG_SET_0);
884 mw32(MVS_STP_REG_SET_0, 0);
885 mw32(MVS_STP_REG_SET_0, tmp);
886 tmp = mr32(MVS_STP_REG_SET_1);
887 mw32(MVS_STP_REG_SET_1, 0);
888 mw32(MVS_STP_REG_SET_1, tmp);
889}
890
891
892u32 mvs_94xx_spi_read_data(struct mvs_info *mvi)
893{
894 void __iomem *regs = mvi->regs_ex - 0x10200;
895 return mr32(SPI_RD_DATA_REG_94XX);
896}
897
898void mvs_94xx_spi_write_data(struct mvs_info *mvi, u32 data)
899{
900 void __iomem *regs = mvi->regs_ex - 0x10200;
901 mw32(SPI_RD_DATA_REG_94XX, data);
902}
903
904
905int mvs_94xx_spi_buildcmd(struct mvs_info *mvi,
906 u32 *dwCmd,
907 u8 cmd,
908 u8 read,
909 u8 length,
910 u32 addr
911 )
912{
913 void __iomem *regs = mvi->regs_ex - 0x10200;
914 u32 dwTmp;
915
916 dwTmp = ((u32)cmd << 8) | ((u32)length << 4);
917 if (read)
918 dwTmp |= SPI_CTRL_READ_94XX;
919
920 if (addr != MV_MAX_U32) {
921 mw32(SPI_ADDR_REG_94XX, (addr & 0x0003FFFFL));
922 dwTmp |= SPI_ADDR_VLD_94XX;
923 }
924
925 *dwCmd = dwTmp;
926 return 0;
927}
928
929
930int mvs_94xx_spi_issuecmd(struct mvs_info *mvi, u32 cmd)
931{
932 void __iomem *regs = mvi->regs_ex - 0x10200;
933 mw32(SPI_CTRL_REG_94XX, cmd | SPI_CTRL_SpiStart_94XX);
934
935 return 0;
936}
937
938int mvs_94xx_spi_waitdataready(struct mvs_info *mvi, u32 timeout)
939{
940 void __iomem *regs = mvi->regs_ex - 0x10200;
941 u32 i, dwTmp;
942
943 for (i = 0; i < timeout; i++) {
944 dwTmp = mr32(SPI_CTRL_REG_94XX);
945 if (!(dwTmp & SPI_CTRL_SpiStart_94XX))
946 return 0;
947 msleep(10);
948 }
949
950 return -1;
951}
952
Xiangliang Yu8882f082011-05-24 22:33:11 +0800953void mvs_94xx_fix_dma(struct mvs_info *mvi, u32 phy_mask,
954 int buf_len, int from, void *prd)
Andy Yan20b09c22009-05-08 17:46:40 -0400955{
956 int i;
957 struct mvs_prd *buf_prd = prd;
Xiangliang Yu8882f082011-05-24 22:33:11 +0800958 dma_addr_t buf_dma;
Xiangliang Yu84fbd0c2011-05-24 22:37:25 +0800959 struct mvs_prd_imt im_len;
960
961 *(u32 *)&im_len = 0;
Andy Yan20b09c22009-05-08 17:46:40 -0400962 buf_prd += from;
Xiangliang Yu8882f082011-05-24 22:33:11 +0800963
Xiangliang Yu84fbd0c2011-05-24 22:37:25 +0800964#define PRD_CHAINED_ENTRY 0x01
Xiangliang Yu8882f082011-05-24 22:33:11 +0800965 if ((mvi->pdev->revision == VANIR_A0_REV) ||
966 (mvi->pdev->revision == VANIR_B0_REV))
967 buf_dma = (phy_mask <= 0x08) ?
968 mvi->bulk_buffer_dma : mvi->bulk_buffer_dma1;
969 else
970 return;
971
Xiangliang Yu84fbd0c2011-05-24 22:37:25 +0800972 for (i = from; i < MAX_SG_ENTRY; i++, ++buf_prd) {
973 if (i == MAX_SG_ENTRY - 1) {
974 buf_prd->addr = cpu_to_le64(virt_to_phys(buf_prd - 1));
975 im_len.len = 2;
976 im_len.misc_ctl = PRD_CHAINED_ENTRY;
977 } else {
978 buf_prd->addr = cpu_to_le64(buf_dma);
979 im_len.len = buf_len;
980 }
981 buf_prd->im_len = cpu_to_le32(*(u32 *)&im_len);
Andy Yan20b09c22009-05-08 17:46:40 -0400982 }
983}
Andy Yan20b09c22009-05-08 17:46:40 -0400984
Xiangliang Yu83c7b612011-05-24 22:31:47 +0800985static void mvs_94xx_tune_interrupt(struct mvs_info *mvi, u32 time)
986{
987 void __iomem *regs = mvi->regs;
988 u32 tmp = 0;
Xiangliang Yue144f7e2011-05-24 22:38:10 +0800989 /*
990 * the max count is 0x1ff, while our max slot is 0x200,
Xiangliang Yu83c7b612011-05-24 22:31:47 +0800991 * it will make count 0.
992 */
993 if (time == 0) {
994 mw32(MVS_INT_COAL, 0);
995 mw32(MVS_INT_COAL_TMOUT, 0x10000);
996 } else {
997 if (MVS_CHIP_SLOT_SZ > 0x1ff)
998 mw32(MVS_INT_COAL, 0x1ff|COAL_EN);
999 else
1000 mw32(MVS_INT_COAL, MVS_CHIP_SLOT_SZ|COAL_EN);
1001
1002 tmp = 0x10000 | time;
1003 mw32(MVS_INT_COAL_TMOUT, tmp);
1004 }
1005
1006}
1007
Andy Yan20b09c22009-05-08 17:46:40 -04001008const struct mvs_dispatch mvs_94xx_dispatch = {
1009 "mv94xx",
1010 mvs_94xx_init,
1011 NULL,
1012 mvs_94xx_ioremap,
1013 mvs_94xx_iounmap,
1014 mvs_94xx_isr,
1015 mvs_94xx_isr_status,
1016 mvs_94xx_interrupt_enable,
1017 mvs_94xx_interrupt_disable,
1018 mvs_read_phy_ctl,
1019 mvs_write_phy_ctl,
1020 mvs_read_port_cfg_data,
1021 mvs_write_port_cfg_data,
1022 mvs_write_port_cfg_addr,
1023 mvs_read_port_vsr_data,
1024 mvs_write_port_vsr_data,
1025 mvs_write_port_vsr_addr,
1026 mvs_read_port_irq_stat,
1027 mvs_write_port_irq_stat,
1028 mvs_read_port_irq_mask,
1029 mvs_write_port_irq_mask,
Andy Yan20b09c22009-05-08 17:46:40 -04001030 mvs_94xx_command_active,
Srinivas9dc9fd92010-02-15 00:00:00 -06001031 mvs_94xx_clear_srs_irq,
Andy Yan20b09c22009-05-08 17:46:40 -04001032 mvs_94xx_issue_stop,
1033 mvs_start_delivery,
1034 mvs_rx_update,
1035 mvs_int_full,
1036 mvs_94xx_assign_reg_set,
1037 mvs_94xx_free_reg_set,
1038 mvs_get_prd_size,
1039 mvs_get_prd_count,
1040 mvs_94xx_make_prd,
1041 mvs_94xx_detect_porttype,
1042 mvs_94xx_oob_done,
1043 mvs_94xx_fix_phy_info,
1044 NULL,
1045 mvs_94xx_phy_set_link_rate,
1046 mvs_hw_max_link_rate,
1047 mvs_94xx_phy_disable,
1048 mvs_94xx_phy_enable,
1049 mvs_94xx_phy_reset,
1050 NULL,
1051 mvs_94xx_clear_active_cmds,
1052 mvs_94xx_spi_read_data,
1053 mvs_94xx_spi_write_data,
1054 mvs_94xx_spi_buildcmd,
1055 mvs_94xx_spi_issuecmd,
1056 mvs_94xx_spi_waitdataready,
Andy Yan20b09c22009-05-08 17:46:40 -04001057 mvs_94xx_fix_dma,
Xiangliang Yu83c7b612011-05-24 22:31:47 +08001058 mvs_94xx_tune_interrupt,
Xiangliang Yu534ff102011-05-24 22:26:50 +08001059 mvs_94xx_non_spec_ncq_error,
Andy Yan20b09c22009-05-08 17:46:40 -04001060};
1061