blob: c88b8a7ed39892ae59d6cee0ba59568a6bdfac8d [file] [log] [blame]
Jeff Garzikdd4969a2009-05-08 17:44:01 -04001/*
Andy Yan20b09c22009-05-08 17:46:40 -04002 * Marvell 88SE64xx 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*/
Jeff Garzikdd4969a2009-05-08 17:44:01 -040025
26#include "mv_sas.h"
27#include "mv_64xx.h"
28#include "mv_chips.h"
29
Andy Yan20b09c22009-05-08 17:46:40 -040030static void mvs_64xx_detect_porttype(struct mvs_info *mvi, int i)
Jeff Garzikdd4969a2009-05-08 17:44:01 -040031{
32 void __iomem *regs = mvi->regs;
33 u32 reg;
34 struct mvs_phy *phy = &mvi->phy[i];
35
36 /* TODO check & save device type */
Andy Yan20b09c22009-05-08 17:46:40 -040037 reg = mr32(MVS_GBL_PORT_TYPE);
38 phy->phy_type &= ~(PORT_TYPE_SAS | PORT_TYPE_SATA);
Jeff Garzikdd4969a2009-05-08 17:44:01 -040039 if (reg & MODE_SAS_SATA & (1 << i))
40 phy->phy_type |= PORT_TYPE_SAS;
41 else
42 phy->phy_type |= PORT_TYPE_SATA;
43}
44
Andy Yan20b09c22009-05-08 17:46:40 -040045static void __devinit mvs_64xx_enable_xmt(struct mvs_info *mvi, int phy_id)
Jeff Garzikdd4969a2009-05-08 17:44:01 -040046{
47 void __iomem *regs = mvi->regs;
48 u32 tmp;
49
Andy Yan20b09c22009-05-08 17:46:40 -040050 tmp = mr32(MVS_PCS);
Jeff Garzikdd4969a2009-05-08 17:44:01 -040051 if (mvi->chip->n_phy <= 4)
Andy Yan20b09c22009-05-08 17:46:40 -040052 tmp |= 1 << (phy_id + PCS_EN_PORT_XMT_SHIFT);
Jeff Garzikdd4969a2009-05-08 17:44:01 -040053 else
Andy Yan20b09c22009-05-08 17:46:40 -040054 tmp |= 1 << (phy_id + PCS_EN_PORT_XMT_SHIFT2);
55 mw32(MVS_PCS, tmp);
Jeff Garzikdd4969a2009-05-08 17:44:01 -040056}
57
Andy Yan20b09c22009-05-08 17:46:40 -040058static void __devinit mvs_64xx_phy_hacks(struct mvs_info *mvi)
59{
60 void __iomem *regs = mvi->regs;
61
62 mvs_phy_hacks(mvi);
63
64 if (!(mvi->flags & MVF_FLAG_SOC)) {
65 /* TEST - for phy decoding error, adjust voltage levels */
66 mw32(MVS_P0_VSR_ADDR + 0, 0x8);
67 mw32(MVS_P0_VSR_DATA + 0, 0x2F0);
68
69 mw32(MVS_P0_VSR_ADDR + 8, 0x8);
70 mw32(MVS_P0_VSR_DATA + 8, 0x2F0);
71
72 mw32(MVS_P0_VSR_ADDR + 16, 0x8);
73 mw32(MVS_P0_VSR_DATA + 16, 0x2F0);
74
75 mw32(MVS_P0_VSR_ADDR + 24, 0x8);
76 mw32(MVS_P0_VSR_DATA + 24, 0x2F0);
77 } else {
78 int i;
79 /* disable auto port detection */
80 mw32(MVS_GBL_PORT_TYPE, 0);
81 for (i = 0; i < mvi->chip->n_phy; i++) {
82 mvs_write_port_vsr_addr(mvi, i, VSR_PHY_MODE7);
83 mvs_write_port_vsr_data(mvi, i, 0x90000000);
84 mvs_write_port_vsr_addr(mvi, i, VSR_PHY_MODE9);
85 mvs_write_port_vsr_data(mvi, i, 0x50f2);
86 mvs_write_port_vsr_addr(mvi, i, VSR_PHY_MODE11);
87 mvs_write_port_vsr_data(mvi, i, 0x0e);
88 }
89 }
90}
91
92static void mvs_64xx_stp_reset(struct mvs_info *mvi, u32 phy_id)
93{
94 void __iomem *regs = mvi->regs;
95 u32 reg, tmp;
96
97 if (!(mvi->flags & MVF_FLAG_SOC)) {
98 if (phy_id < 4)
99 pci_read_config_dword(mvi->pdev, PCR_PHY_CTL, &reg);
100 else
101 pci_read_config_dword(mvi->pdev, PCR_PHY_CTL2, &reg);
102
103 } else
104 reg = mr32(MVS_PHY_CTL);
105
106 tmp = reg;
107 if (phy_id < 4)
108 tmp |= (1U << phy_id) << PCTL_LINK_OFFS;
109 else
110 tmp |= (1U << (phy_id - 4)) << PCTL_LINK_OFFS;
111
112 if (!(mvi->flags & MVF_FLAG_SOC)) {
113 if (phy_id < 4) {
114 pci_write_config_dword(mvi->pdev, PCR_PHY_CTL, tmp);
115 mdelay(10);
116 pci_write_config_dword(mvi->pdev, PCR_PHY_CTL, reg);
117 } else {
118 pci_write_config_dword(mvi->pdev, PCR_PHY_CTL2, tmp);
119 mdelay(10);
120 pci_write_config_dword(mvi->pdev, PCR_PHY_CTL2, reg);
121 }
122 } else {
123 mw32(MVS_PHY_CTL, tmp);
124 mdelay(10);
125 mw32(MVS_PHY_CTL, reg);
126 }
127}
128
129static void mvs_64xx_phy_reset(struct mvs_info *mvi, u32 phy_id, int hard)
130{
131 u32 tmp;
132 tmp = mvs_read_port_irq_stat(mvi, phy_id);
133 tmp &= ~PHYEV_RDY_CH;
134 mvs_write_port_irq_stat(mvi, phy_id, tmp);
135 tmp = mvs_read_phy_ctl(mvi, phy_id);
Srinivas9dc9fd92010-02-15 00:00:00 -0600136 if (hard == 1)
Andy Yan20b09c22009-05-08 17:46:40 -0400137 tmp |= PHY_RST_HARD;
Srinivas9dc9fd92010-02-15 00:00:00 -0600138 else if (hard == 0)
Andy Yan20b09c22009-05-08 17:46:40 -0400139 tmp |= PHY_RST;
140 mvs_write_phy_ctl(mvi, phy_id, tmp);
141 if (hard) {
142 do {
143 tmp = mvs_read_phy_ctl(mvi, phy_id);
144 } while (tmp & PHY_RST_HARD);
145 }
146}
147
Srinivas9dc9fd92010-02-15 00:00:00 -0600148void mvs_64xx_clear_srs_irq(struct mvs_info *mvi, u8 reg_set, u8 clear_all)
149{
150 void __iomem *regs = mvi->regs;
151 u32 tmp;
152 if (clear_all) {
153 tmp = mr32(MVS_INT_STAT_SRS_0);
154 if (tmp) {
155 printk(KERN_DEBUG "check SRS 0 %08X.\n", tmp);
156 mw32(MVS_INT_STAT_SRS_0, tmp);
157 }
158 } else {
159 tmp = mr32(MVS_INT_STAT_SRS_0);
160 if (tmp & (1 << (reg_set % 32))) {
161 printk(KERN_DEBUG "register set 0x%x was stopped.\n",
162 reg_set);
163 mw32(MVS_INT_STAT_SRS_0, 1 << (reg_set % 32));
164 }
165 }
166}
167
Andy Yan20b09c22009-05-08 17:46:40 -0400168static int __devinit mvs_64xx_chip_reset(struct mvs_info *mvi)
169{
170 void __iomem *regs = mvi->regs;
171 u32 tmp;
172 int i;
173
174 /* make sure interrupts are masked immediately (paranoia) */
175 mw32(MVS_GBL_CTL, 0);
176 tmp = mr32(MVS_GBL_CTL);
177
178 /* Reset Controller */
179 if (!(tmp & HBA_RST)) {
180 if (mvi->flags & MVF_PHY_PWR_FIX) {
181 pci_read_config_dword(mvi->pdev, PCR_PHY_CTL, &tmp);
182 tmp &= ~PCTL_PWR_OFF;
183 tmp |= PCTL_PHY_DSBL;
184 pci_write_config_dword(mvi->pdev, PCR_PHY_CTL, tmp);
185
186 pci_read_config_dword(mvi->pdev, PCR_PHY_CTL2, &tmp);
187 tmp &= ~PCTL_PWR_OFF;
188 tmp |= PCTL_PHY_DSBL;
189 pci_write_config_dword(mvi->pdev, PCR_PHY_CTL2, tmp);
190 }
191 }
192
193 /* make sure interrupts are masked immediately (paranoia) */
194 mw32(MVS_GBL_CTL, 0);
195 tmp = mr32(MVS_GBL_CTL);
196
197 /* Reset Controller */
198 if (!(tmp & HBA_RST)) {
199 /* global reset, incl. COMRESET/H_RESET_N (self-clearing) */
200 mw32_f(MVS_GBL_CTL, HBA_RST);
201 }
202
203 /* wait for reset to finish; timeout is just a guess */
204 i = 1000;
205 while (i-- > 0) {
206 msleep(10);
207
208 if (!(mr32(MVS_GBL_CTL) & HBA_RST))
209 break;
210 }
211 if (mr32(MVS_GBL_CTL) & HBA_RST) {
212 dev_printk(KERN_ERR, mvi->dev, "HBA reset failed\n");
213 return -EBUSY;
214 }
215 return 0;
216}
217
218static void mvs_64xx_phy_disable(struct mvs_info *mvi, u32 phy_id)
219{
220 void __iomem *regs = mvi->regs;
221 u32 tmp;
222 if (!(mvi->flags & MVF_FLAG_SOC)) {
223 u32 offs;
224 if (phy_id < 4)
225 offs = PCR_PHY_CTL;
226 else {
227 offs = PCR_PHY_CTL2;
228 phy_id -= 4;
229 }
230 pci_read_config_dword(mvi->pdev, offs, &tmp);
231 tmp |= 1U << (PCTL_PHY_DSBL_OFFS + phy_id);
232 pci_write_config_dword(mvi->pdev, offs, tmp);
233 } else {
234 tmp = mr32(MVS_PHY_CTL);
235 tmp |= 1U << (PCTL_PHY_DSBL_OFFS + phy_id);
236 mw32(MVS_PHY_CTL, tmp);
237 }
238}
239
240static void mvs_64xx_phy_enable(struct mvs_info *mvi, u32 phy_id)
241{
242 void __iomem *regs = mvi->regs;
243 u32 tmp;
244 if (!(mvi->flags & MVF_FLAG_SOC)) {
245 u32 offs;
246 if (phy_id < 4)
247 offs = PCR_PHY_CTL;
248 else {
249 offs = PCR_PHY_CTL2;
250 phy_id -= 4;
251 }
252 pci_read_config_dword(mvi->pdev, offs, &tmp);
253 tmp &= ~(1U << (PCTL_PHY_DSBL_OFFS + phy_id));
254 pci_write_config_dword(mvi->pdev, offs, tmp);
255 } else {
256 tmp = mr32(MVS_PHY_CTL);
257 tmp &= ~(1U << (PCTL_PHY_DSBL_OFFS + phy_id));
258 mw32(MVS_PHY_CTL, tmp);
259 }
260}
261
262static int __devinit mvs_64xx_init(struct mvs_info *mvi)
263{
264 void __iomem *regs = mvi->regs;
265 int i;
266 u32 tmp, cctl;
267
268 if (mvi->pdev && mvi->pdev->revision == 0)
269 mvi->flags |= MVF_PHY_PWR_FIX;
270 if (!(mvi->flags & MVF_FLAG_SOC)) {
271 mvs_show_pcie_usage(mvi);
272 tmp = mvs_64xx_chip_reset(mvi);
273 if (tmp)
274 return tmp;
275 } else {
276 tmp = mr32(MVS_PHY_CTL);
277 tmp &= ~PCTL_PWR_OFF;
278 tmp |= PCTL_PHY_DSBL;
279 mw32(MVS_PHY_CTL, tmp);
280 }
281
282 /* Init Chip */
283 /* make sure RST is set; HBA_RST /should/ have done that for us */
284 cctl = mr32(MVS_CTL) & 0xFFFF;
285 if (cctl & CCTL_RST)
286 cctl &= ~CCTL_RST;
287 else
288 mw32_f(MVS_CTL, cctl | CCTL_RST);
289
290 if (!(mvi->flags & MVF_FLAG_SOC)) {
291 /* write to device control _AND_ device status register */
292 pci_read_config_dword(mvi->pdev, PCR_DEV_CTRL, &tmp);
293 tmp &= ~PRD_REQ_MASK;
294 tmp |= PRD_REQ_SIZE;
295 pci_write_config_dword(mvi->pdev, PCR_DEV_CTRL, tmp);
296
297 pci_read_config_dword(mvi->pdev, PCR_PHY_CTL, &tmp);
298 tmp &= ~PCTL_PWR_OFF;
299 tmp &= ~PCTL_PHY_DSBL;
300 pci_write_config_dword(mvi->pdev, PCR_PHY_CTL, tmp);
301
302 pci_read_config_dword(mvi->pdev, PCR_PHY_CTL2, &tmp);
303 tmp &= PCTL_PWR_OFF;
304 tmp &= ~PCTL_PHY_DSBL;
305 pci_write_config_dword(mvi->pdev, PCR_PHY_CTL2, tmp);
306 } else {
307 tmp = mr32(MVS_PHY_CTL);
308 tmp &= ~PCTL_PWR_OFF;
309 tmp |= PCTL_COM_ON;
310 tmp &= ~PCTL_PHY_DSBL;
311 tmp |= PCTL_LINK_RST;
312 mw32(MVS_PHY_CTL, tmp);
313 msleep(100);
314 tmp &= ~PCTL_LINK_RST;
315 mw32(MVS_PHY_CTL, tmp);
316 msleep(100);
317 }
318
319 /* reset control */
320 mw32(MVS_PCS, 0); /* MVS_PCS */
321 /* init phys */
322 mvs_64xx_phy_hacks(mvi);
323
324 /* enable auto port detection */
325 mw32(MVS_GBL_PORT_TYPE, MODE_AUTO_DET_EN);
326
327 mw32(MVS_CMD_LIST_LO, mvi->slot_dma);
328 mw32(MVS_CMD_LIST_HI, (mvi->slot_dma >> 16) >> 16);
329
330 mw32(MVS_RX_FIS_LO, mvi->rx_fis_dma);
331 mw32(MVS_RX_FIS_HI, (mvi->rx_fis_dma >> 16) >> 16);
332
333 mw32(MVS_TX_CFG, MVS_CHIP_SLOT_SZ);
334 mw32(MVS_TX_LO, mvi->tx_dma);
335 mw32(MVS_TX_HI, (mvi->tx_dma >> 16) >> 16);
336
337 mw32(MVS_RX_CFG, MVS_RX_RING_SZ);
338 mw32(MVS_RX_LO, mvi->rx_dma);
339 mw32(MVS_RX_HI, (mvi->rx_dma >> 16) >> 16);
340
341 for (i = 0; i < mvi->chip->n_phy; i++) {
342 /* set phy local SAS address */
343 /* should set little endian SAS address to 64xx chip */
344 mvs_set_sas_addr(mvi, i, PHYR_ADDR_LO, PHYR_ADDR_HI,
345 cpu_to_be64(mvi->phy[i].dev_sas_addr));
346
347 mvs_64xx_enable_xmt(mvi, i);
348
349 mvs_64xx_phy_reset(mvi, i, 1);
350 msleep(500);
351 mvs_64xx_detect_porttype(mvi, i);
352 }
353 if (mvi->flags & MVF_FLAG_SOC) {
354 /* set select registers */
355 writel(0x0E008000, regs + 0x000);
356 writel(0x59000008, regs + 0x004);
357 writel(0x20, regs + 0x008);
358 writel(0x20, regs + 0x00c);
359 writel(0x20, regs + 0x010);
360 writel(0x20, regs + 0x014);
361 writel(0x20, regs + 0x018);
362 writel(0x20, regs + 0x01c);
363 }
364 for (i = 0; i < mvi->chip->n_phy; i++) {
365 /* clear phy int status */
366 tmp = mvs_read_port_irq_stat(mvi, i);
367 tmp &= ~PHYEV_SIG_FIS;
368 mvs_write_port_irq_stat(mvi, i, tmp);
369
370 /* set phy int mask */
371 tmp = PHYEV_RDY_CH | PHYEV_BROAD_CH | PHYEV_UNASSOC_FIS |
372 PHYEV_ID_DONE | PHYEV_DCDR_ERR | PHYEV_CRC_ERR |
373 PHYEV_DEC_ERR;
374 mvs_write_port_irq_mask(mvi, i, tmp);
375
376 msleep(100);
377 mvs_update_phyinfo(mvi, i, 1);
378 }
379
380 /* FIXME: update wide port bitmaps */
381
382 /* little endian for open address and command table, etc. */
383 /*
384 * it seems that ( from the spec ) turning on big-endian won't
385 * do us any good on big-endian machines, need further confirmation
386 */
387 cctl = mr32(MVS_CTL);
388 cctl |= CCTL_ENDIAN_CMD;
389 cctl |= CCTL_ENDIAN_DATA;
390 cctl &= ~CCTL_ENDIAN_OPEN;
391 cctl |= CCTL_ENDIAN_RSP;
392 mw32_f(MVS_CTL, cctl);
393
394 /* reset CMD queue */
395 tmp = mr32(MVS_PCS);
396 tmp |= PCS_CMD_RST;
397 mw32(MVS_PCS, tmp);
398 /* interrupt coalescing may cause missing HW interrput in some case,
399 * and the max count is 0x1ff, while our max slot is 0x200,
400 * it will make count 0.
401 */
402 tmp = 0;
403 mw32(MVS_INT_COAL, tmp);
404
Xiangliang Yu83c7b612011-05-24 22:31:47 +0800405 tmp = 0x10000 | interrupt_coalescing;
Andy Yan20b09c22009-05-08 17:46:40 -0400406 mw32(MVS_INT_COAL_TMOUT, tmp);
407
408 /* ladies and gentlemen, start your engines */
409 mw32(MVS_TX_CFG, 0);
410 mw32(MVS_TX_CFG, MVS_CHIP_SLOT_SZ | TX_EN);
411 mw32(MVS_RX_CFG, MVS_RX_RING_SZ | RX_EN);
412 /* enable CMD/CMPL_Q/RESP mode */
413 mw32(MVS_PCS, PCS_SATA_RETRY | PCS_FIS_RX_EN |
414 PCS_CMD_EN | PCS_CMD_STOP_ERR);
415
416 /* enable completion queue interrupt */
417 tmp = (CINT_PORT_MASK | CINT_DONE | CINT_MEM | CINT_SRS | CINT_CI_STOP |
418 CINT_DMA_PCIE);
419
420 mw32(MVS_INT_MASK, tmp);
421
422 /* Enable SRS interrupt */
423 mw32(MVS_INT_MASK_SRS_0, 0xFFFF);
424
425 return 0;
426}
427
428static int mvs_64xx_ioremap(struct mvs_info *mvi)
429{
430 if (!mvs_ioremap(mvi, 4, 2))
431 return 0;
432 return -1;
433}
434
435static void mvs_64xx_iounmap(struct mvs_info *mvi)
436{
437 mvs_iounmap(mvi->regs);
438 mvs_iounmap(mvi->regs_ex);
439}
440
441static void mvs_64xx_interrupt_enable(struct mvs_info *mvi)
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400442{
443 void __iomem *regs = mvi->regs;
444 u32 tmp;
445
Andy Yan20b09c22009-05-08 17:46:40 -0400446 tmp = mr32(MVS_GBL_CTL);
447 mw32(MVS_GBL_CTL, tmp | INT_EN);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400448}
449
Andy Yan20b09c22009-05-08 17:46:40 -0400450static void mvs_64xx_interrupt_disable(struct mvs_info *mvi)
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400451{
452 void __iomem *regs = mvi->regs;
453 u32 tmp;
454
Andy Yan20b09c22009-05-08 17:46:40 -0400455 tmp = mr32(MVS_GBL_CTL);
456 mw32(MVS_GBL_CTL, tmp & ~INT_EN);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400457}
458
Andy Yan20b09c22009-05-08 17:46:40 -0400459static u32 mvs_64xx_isr_status(struct mvs_info *mvi, int irq)
460{
461 void __iomem *regs = mvi->regs;
462 u32 stat;
463
464 if (!(mvi->flags & MVF_FLAG_SOC)) {
465 stat = mr32(MVS_GBL_INT_STAT);
466
467 if (stat == 0 || stat == 0xffffffff)
468 return 0;
469 } else
470 stat = 1;
471 return stat;
472}
473
474static irqreturn_t mvs_64xx_isr(struct mvs_info *mvi, int irq, u32 stat)
475{
476 void __iomem *regs = mvi->regs;
477
478 /* clear CMD_CMPLT ASAP */
479 mw32_f(MVS_INT_STAT, CINT_DONE);
480#ifndef MVS_USE_TASKLET
481 spin_lock(&mvi->lock);
482#endif
483 mvs_int_full(mvi);
484#ifndef MVS_USE_TASKLET
485 spin_unlock(&mvi->lock);
486#endif
487 return IRQ_HANDLED;
488}
489
490static void mvs_64xx_command_active(struct mvs_info *mvi, u32 slot_idx)
491{
492 u32 tmp;
493 mvs_cw32(mvi, 0x40 + (slot_idx >> 3), 1 << (slot_idx % 32));
494 mvs_cw32(mvi, 0x00 + (slot_idx >> 3), 1 << (slot_idx % 32));
495 do {
496 tmp = mvs_cr32(mvi, 0x00 + (slot_idx >> 3));
497 } while (tmp & 1 << (slot_idx % 32));
498 do {
499 tmp = mvs_cr32(mvi, 0x40 + (slot_idx >> 3));
500 } while (tmp & 1 << (slot_idx % 32));
501}
502
503static void mvs_64xx_issue_stop(struct mvs_info *mvi, enum mvs_port_type type,
504 u32 tfs)
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400505{
506 void __iomem *regs = mvi->regs;
507 u32 tmp;
508
Andy Yan20b09c22009-05-08 17:46:40 -0400509 if (type == PORT_TYPE_SATA) {
510 tmp = mr32(MVS_INT_STAT_SRS_0) | (1U << tfs);
511 mw32(MVS_INT_STAT_SRS_0, tmp);
512 }
513 mw32(MVS_INT_STAT, CINT_CI_STOP);
514 tmp = mr32(MVS_PCS) | 0xFF00;
515 mw32(MVS_PCS, tmp);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400516}
517
Andy Yan20b09c22009-05-08 17:46:40 -0400518static void mvs_64xx_free_reg_set(struct mvs_info *mvi, u8 *tfs)
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400519{
520 void __iomem *regs = mvi->regs;
521 u32 tmp, offs;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400522
523 if (*tfs == MVS_ID_NOT_MAPPED)
524 return;
525
526 offs = 1U << ((*tfs & 0x0f) + PCS_EN_SATA_REG_SHIFT);
527 if (*tfs < 16) {
Andy Yan20b09c22009-05-08 17:46:40 -0400528 tmp = mr32(MVS_PCS);
529 mw32(MVS_PCS, tmp & ~offs);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400530 } else {
Andy Yan20b09c22009-05-08 17:46:40 -0400531 tmp = mr32(MVS_CTL);
532 mw32(MVS_CTL, tmp & ~offs);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400533 }
534
Andy Yan20b09c22009-05-08 17:46:40 -0400535 tmp = mr32(MVS_INT_STAT_SRS_0) & (1U << *tfs);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400536 if (tmp)
Andy Yan20b09c22009-05-08 17:46:40 -0400537 mw32(MVS_INT_STAT_SRS_0, tmp);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400538
539 *tfs = MVS_ID_NOT_MAPPED;
Andy Yan20b09c22009-05-08 17:46:40 -0400540 return;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400541}
542
Andy Yan20b09c22009-05-08 17:46:40 -0400543static u8 mvs_64xx_assign_reg_set(struct mvs_info *mvi, u8 *tfs)
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400544{
545 int i;
546 u32 tmp, offs;
547 void __iomem *regs = mvi->regs;
548
Andy Yan20b09c22009-05-08 17:46:40 -0400549 if (*tfs != MVS_ID_NOT_MAPPED)
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400550 return 0;
551
Andy Yan20b09c22009-05-08 17:46:40 -0400552 tmp = mr32(MVS_PCS);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400553
554 for (i = 0; i < mvi->chip->srs_sz; i++) {
555 if (i == 16)
Andy Yan20b09c22009-05-08 17:46:40 -0400556 tmp = mr32(MVS_CTL);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400557 offs = 1U << ((i & 0x0f) + PCS_EN_SATA_REG_SHIFT);
558 if (!(tmp & offs)) {
Andy Yan20b09c22009-05-08 17:46:40 -0400559 *tfs = i;
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400560
561 if (i < 16)
Andy Yan20b09c22009-05-08 17:46:40 -0400562 mw32(MVS_PCS, tmp | offs);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400563 else
Andy Yan20b09c22009-05-08 17:46:40 -0400564 mw32(MVS_CTL, tmp | offs);
565 tmp = mr32(MVS_INT_STAT_SRS_0) & (1U << i);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400566 if (tmp)
Andy Yan20b09c22009-05-08 17:46:40 -0400567 mw32(MVS_INT_STAT_SRS_0, tmp);
Jeff Garzikdd4969a2009-05-08 17:44:01 -0400568 return 0;
569 }
570 }
571 return MVS_ID_NOT_MAPPED;
572}
573
Andy Yan20b09c22009-05-08 17:46:40 -0400574void mvs_64xx_make_prd(struct scatterlist *scatter, int nr, void *prd)
575{
576 int i;
577 struct scatterlist *sg;
578 struct mvs_prd *buf_prd = prd;
579 for_each_sg(scatter, sg, nr, i) {
580 buf_prd->addr = cpu_to_le64(sg_dma_address(sg));
581 buf_prd->len = cpu_to_le32(sg_dma_len(sg));
582 buf_prd++;
583 }
584}
585
586static int mvs_64xx_oob_done(struct mvs_info *mvi, int i)
587{
588 u32 phy_st;
589 mvs_write_port_cfg_addr(mvi, i,
590 PHYR_PHY_STAT);
591 phy_st = mvs_read_port_cfg_data(mvi, i);
592 if (phy_st & PHY_OOB_DTCTD)
593 return 1;
594 return 0;
595}
596
597static void mvs_64xx_fix_phy_info(struct mvs_info *mvi, int i,
598 struct sas_identify_frame *id)
599
600{
601 struct mvs_phy *phy = &mvi->phy[i];
602 struct asd_sas_phy *sas_phy = &phy->sas_phy;
603
604 sas_phy->linkrate =
605 (phy->phy_status & PHY_NEG_SPP_PHYS_LINK_RATE_MASK) >>
606 PHY_NEG_SPP_PHYS_LINK_RATE_MASK_OFFSET;
607
608 phy->minimum_linkrate =
609 (phy->phy_status &
610 PHY_MIN_SPP_PHYS_LINK_RATE_MASK) >> 8;
611 phy->maximum_linkrate =
612 (phy->phy_status &
613 PHY_MAX_SPP_PHYS_LINK_RATE_MASK) >> 12;
614
615 mvs_write_port_cfg_addr(mvi, i, PHYR_IDENTIFY);
616 phy->dev_info = mvs_read_port_cfg_data(mvi, i);
617
618 mvs_write_port_cfg_addr(mvi, i, PHYR_ATT_DEV_INFO);
619 phy->att_dev_info = mvs_read_port_cfg_data(mvi, i);
620
621 mvs_write_port_cfg_addr(mvi, i, PHYR_ATT_ADDR_HI);
622 phy->att_dev_sas_addr =
623 (u64) mvs_read_port_cfg_data(mvi, i) << 32;
624 mvs_write_port_cfg_addr(mvi, i, PHYR_ATT_ADDR_LO);
625 phy->att_dev_sas_addr |= mvs_read_port_cfg_data(mvi, i);
626 phy->att_dev_sas_addr = SAS_ADDR(&phy->att_dev_sas_addr);
627}
628
629static void mvs_64xx_phy_work_around(struct mvs_info *mvi, int i)
630{
631 u32 tmp;
632 struct mvs_phy *phy = &mvi->phy[i];
633 /* workaround for HW phy decoding error on 1.5g disk drive */
634 mvs_write_port_vsr_addr(mvi, i, VSR_PHY_MODE6);
635 tmp = mvs_read_port_vsr_data(mvi, i);
636 if (((phy->phy_status & PHY_NEG_SPP_PHYS_LINK_RATE_MASK) >>
637 PHY_NEG_SPP_PHYS_LINK_RATE_MASK_OFFSET) ==
638 SAS_LINK_RATE_1_5_GBPS)
639 tmp &= ~PHY_MODE6_LATECLK;
640 else
641 tmp |= PHY_MODE6_LATECLK;
642 mvs_write_port_vsr_data(mvi, i, tmp);
643}
644
645void mvs_64xx_phy_set_link_rate(struct mvs_info *mvi, u32 phy_id,
646 struct sas_phy_linkrates *rates)
647{
648 u32 lrmin = 0, lrmax = 0;
649 u32 tmp;
650
651 tmp = mvs_read_phy_ctl(mvi, phy_id);
652 lrmin = (rates->minimum_linkrate << 8);
653 lrmax = (rates->maximum_linkrate << 12);
654
655 if (lrmin) {
656 tmp &= ~(0xf << 8);
657 tmp |= lrmin;
658 }
659 if (lrmax) {
660 tmp &= ~(0xf << 12);
661 tmp |= lrmax;
662 }
663 mvs_write_phy_ctl(mvi, phy_id, tmp);
664 mvs_64xx_phy_reset(mvi, phy_id, 1);
665}
666
667static void mvs_64xx_clear_active_cmds(struct mvs_info *mvi)
668{
669 u32 tmp;
670 void __iomem *regs = mvi->regs;
671 tmp = mr32(MVS_PCS);
672 mw32(MVS_PCS, tmp & 0xFFFF);
673 mw32(MVS_PCS, tmp);
674 tmp = mr32(MVS_CTL);
675 mw32(MVS_CTL, tmp & 0xFFFF);
676 mw32(MVS_CTL, tmp);
677}
678
679
680u32 mvs_64xx_spi_read_data(struct mvs_info *mvi)
681{
682 void __iomem *regs = mvi->regs_ex;
683 return ior32(SPI_DATA_REG_64XX);
684}
685
686void mvs_64xx_spi_write_data(struct mvs_info *mvi, u32 data)
687{
688 void __iomem *regs = mvi->regs_ex;
689 iow32(SPI_DATA_REG_64XX, data);
690}
691
692
693int mvs_64xx_spi_buildcmd(struct mvs_info *mvi,
694 u32 *dwCmd,
695 u8 cmd,
696 u8 read,
697 u8 length,
698 u32 addr
699 )
700{
701 u32 dwTmp;
702
703 dwTmp = ((u32)cmd << 24) | ((u32)length << 19);
704 if (read)
705 dwTmp |= 1U<<23;
706
707 if (addr != MV_MAX_U32) {
708 dwTmp |= 1U<<22;
709 dwTmp |= (addr & 0x0003FFFF);
710 }
711
712 *dwCmd = dwTmp;
713 return 0;
714}
715
716
717int mvs_64xx_spi_issuecmd(struct mvs_info *mvi, u32 cmd)
718{
719 void __iomem *regs = mvi->regs_ex;
720 int retry;
721
722 for (retry = 0; retry < 1; retry++) {
723 iow32(SPI_CTRL_REG_64XX, SPI_CTRL_VENDOR_ENABLE);
724 iow32(SPI_CMD_REG_64XX, cmd);
725 iow32(SPI_CTRL_REG_64XX,
726 SPI_CTRL_VENDOR_ENABLE | SPI_CTRL_SPISTART);
727 }
728
729 return 0;
730}
731
732int mvs_64xx_spi_waitdataready(struct mvs_info *mvi, u32 timeout)
733{
734 void __iomem *regs = mvi->regs_ex;
735 u32 i, dwTmp;
736
737 for (i = 0; i < timeout; i++) {
738 dwTmp = ior32(SPI_CTRL_REG_64XX);
739 if (!(dwTmp & SPI_CTRL_SPISTART))
740 return 0;
741 msleep(10);
742 }
743
744 return -1;
745}
746
747#ifndef DISABLE_HOTPLUG_DMA_FIX
748void mvs_64xx_fix_dma(dma_addr_t buf_dma, int buf_len, int from, void *prd)
749{
750 int i;
751 struct mvs_prd *buf_prd = prd;
752 buf_prd += from;
753 for (i = 0; i < MAX_SG_ENTRY - from; i++) {
754 buf_prd->addr = cpu_to_le64(buf_dma);
755 buf_prd->len = cpu_to_le32(buf_len);
756 ++buf_prd;
757 }
758}
759#endif
760
Xiangliang Yu83c7b612011-05-24 22:31:47 +0800761static void mvs_64xx_tune_interrupt(struct mvs_info *mvi, u32 time)
762{
763 void __iomem *regs = mvi->regs;
764 u32 tmp = 0;
765 /* interrupt coalescing may cause missing HW interrput in some case,
766 * and the max count is 0x1ff, while our max slot is 0x200,
767 * it will make count 0.
768 */
769 if (time == 0) {
770 mw32(MVS_INT_COAL, 0);
771 mw32(MVS_INT_COAL_TMOUT, 0x10000);
772 } else {
773 if (MVS_CHIP_SLOT_SZ > 0x1ff)
774 mw32(MVS_INT_COAL, 0x1ff|COAL_EN);
775 else
776 mw32(MVS_INT_COAL, MVS_CHIP_SLOT_SZ|COAL_EN);
777
778 tmp = 0x10000 | time;
779 mw32(MVS_INT_COAL_TMOUT, tmp);
780 }
781}
782
Andy Yan20b09c22009-05-08 17:46:40 -0400783const struct mvs_dispatch mvs_64xx_dispatch = {
784 "mv64xx",
785 mvs_64xx_init,
786 NULL,
787 mvs_64xx_ioremap,
788 mvs_64xx_iounmap,
789 mvs_64xx_isr,
790 mvs_64xx_isr_status,
791 mvs_64xx_interrupt_enable,
792 mvs_64xx_interrupt_disable,
793 mvs_read_phy_ctl,
794 mvs_write_phy_ctl,
795 mvs_read_port_cfg_data,
796 mvs_write_port_cfg_data,
797 mvs_write_port_cfg_addr,
798 mvs_read_port_vsr_data,
799 mvs_write_port_vsr_data,
800 mvs_write_port_vsr_addr,
801 mvs_read_port_irq_stat,
802 mvs_write_port_irq_stat,
803 mvs_read_port_irq_mask,
804 mvs_write_port_irq_mask,
805 mvs_get_sas_addr,
806 mvs_64xx_command_active,
Srinivas9dc9fd92010-02-15 00:00:00 -0600807 mvs_64xx_clear_srs_irq,
Andy Yan20b09c22009-05-08 17:46:40 -0400808 mvs_64xx_issue_stop,
809 mvs_start_delivery,
810 mvs_rx_update,
811 mvs_int_full,
812 mvs_64xx_assign_reg_set,
813 mvs_64xx_free_reg_set,
814 mvs_get_prd_size,
815 mvs_get_prd_count,
816 mvs_64xx_make_prd,
817 mvs_64xx_detect_porttype,
818 mvs_64xx_oob_done,
819 mvs_64xx_fix_phy_info,
820 mvs_64xx_phy_work_around,
821 mvs_64xx_phy_set_link_rate,
822 mvs_hw_max_link_rate,
823 mvs_64xx_phy_disable,
824 mvs_64xx_phy_enable,
825 mvs_64xx_phy_reset,
826 mvs_64xx_stp_reset,
827 mvs_64xx_clear_active_cmds,
828 mvs_64xx_spi_read_data,
829 mvs_64xx_spi_write_data,
830 mvs_64xx_spi_buildcmd,
831 mvs_64xx_spi_issuecmd,
832 mvs_64xx_spi_waitdataready,
833#ifndef DISABLE_HOTPLUG_DMA_FIX
834 mvs_64xx_fix_dma,
835#endif
Xiangliang Yu83c7b612011-05-24 22:31:47 +0800836 mvs_64xx_tune_interrupt,
Xiangliang Yu534ff102011-05-24 22:26:50 +0800837 NULL,
Andy Yan20b09c22009-05-08 17:46:40 -0400838};
839