[PATCH] libata: add detailed AC_ERR_* flags
[linux-block.git] / drivers / scsi / sata_sx4.c
CommitLineData
1da177e4
LT
1/*
2 * sata_sx4.c - Promise SATA
3 *
4 * Maintained by: Jeff Garzik <jgarzik@pobox.com>
5 * Please ALWAYS copy linux-ide@vger.kernel.org
6 * on emails.
7 *
8 * Copyright 2003-2004 Red Hat, Inc.
9 *
af36d7f0
JG
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2, or (at your option)
14 * any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; see the file COPYING. If not, write to
23 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
24 *
25 *
26 * libata documentation is available via 'make {ps|pdf}docs',
27 * as Documentation/DocBook/libata.*
28 *
29 * Hardware documentation available under NDA.
1da177e4
LT
30 *
31 */
32
33#include <linux/kernel.h>
34#include <linux/module.h>
35#include <linux/pci.h>
36#include <linux/init.h>
37#include <linux/blkdev.h>
38#include <linux/delay.h>
39#include <linux/interrupt.h>
40#include <linux/sched.h>
a9524a76 41#include <linux/device.h>
1da177e4 42#include <scsi/scsi_host.h>
193515d5 43#include <scsi/scsi_cmnd.h>
1da177e4
LT
44#include <linux/libata.h>
45#include <asm/io.h>
46#include "sata_promise.h"
47
48#define DRV_NAME "sata_sx4"
7bdd7208 49#define DRV_VERSION "0.8"
1da177e4
LT
50
51
52enum {
53 PDC_PRD_TBL = 0x44, /* Direct command DMA table addr */
54
55 PDC_PKT_SUBMIT = 0x40, /* Command packet pointer addr */
56 PDC_HDMA_PKT_SUBMIT = 0x100, /* Host DMA packet pointer addr */
57 PDC_INT_SEQMASK = 0x40, /* Mask of asserted SEQ INTs */
58 PDC_HDMA_CTLSTAT = 0x12C, /* Host DMA control / status */
59
60 PDC_20621_SEQCTL = 0x400,
61 PDC_20621_SEQMASK = 0x480,
62 PDC_20621_GENERAL_CTL = 0x484,
63 PDC_20621_PAGE_SIZE = (32 * 1024),
64
65 /* chosen, not constant, values; we design our own DIMM mem map */
66 PDC_20621_DIMM_WINDOW = 0x0C, /* page# for 32K DIMM window */
67 PDC_20621_DIMM_BASE = 0x00200000,
68 PDC_20621_DIMM_DATA = (64 * 1024),
69 PDC_DIMM_DATA_STEP = (256 * 1024),
70 PDC_DIMM_WINDOW_STEP = (8 * 1024),
71 PDC_DIMM_HOST_PRD = (6 * 1024),
72 PDC_DIMM_HOST_PKT = (128 * 0),
73 PDC_DIMM_HPKT_PRD = (128 * 1),
74 PDC_DIMM_ATA_PKT = (128 * 2),
75 PDC_DIMM_APKT_PRD = (128 * 3),
76 PDC_DIMM_HEADER_SZ = PDC_DIMM_APKT_PRD + 128,
77 PDC_PAGE_WINDOW = 0x40,
78 PDC_PAGE_DATA = PDC_PAGE_WINDOW +
79 (PDC_20621_DIMM_DATA / PDC_20621_PAGE_SIZE),
80 PDC_PAGE_SET = PDC_DIMM_DATA_STEP / PDC_20621_PAGE_SIZE,
81
82 PDC_CHIP0_OFS = 0xC0000, /* offset of chip #0 */
83
84 PDC_20621_ERR_MASK = (1<<19) | (1<<20) | (1<<21) | (1<<22) |
85 (1<<23),
86
87 board_20621 = 0, /* FastTrak S150 SX4 */
88
89 PDC_RESET = (1 << 11), /* HDMA reset */
90
91 PDC_MAX_HDMA = 32,
92 PDC_HDMA_Q_MASK = (PDC_MAX_HDMA - 1),
93
94 PDC_DIMM0_SPD_DEV_ADDRESS = 0x50,
95 PDC_DIMM1_SPD_DEV_ADDRESS = 0x51,
96 PDC_MAX_DIMM_MODULE = 0x02,
97 PDC_I2C_CONTROL_OFFSET = 0x48,
98 PDC_I2C_ADDR_DATA_OFFSET = 0x4C,
99 PDC_DIMM0_CONTROL_OFFSET = 0x80,
100 PDC_DIMM1_CONTROL_OFFSET = 0x84,
101 PDC_SDRAM_CONTROL_OFFSET = 0x88,
102 PDC_I2C_WRITE = 0x00000000,
8a60a071 103 PDC_I2C_READ = 0x00000040,
1da177e4
LT
104 PDC_I2C_START = 0x00000080,
105 PDC_I2C_MASK_INT = 0x00000020,
106 PDC_I2C_COMPLETE = 0x00010000,
107 PDC_I2C_NO_ACK = 0x00100000,
108 PDC_DIMM_SPD_SUBADDRESS_START = 0x00,
109 PDC_DIMM_SPD_SUBADDRESS_END = 0x7F,
110 PDC_DIMM_SPD_ROW_NUM = 3,
111 PDC_DIMM_SPD_COLUMN_NUM = 4,
112 PDC_DIMM_SPD_MODULE_ROW = 5,
113 PDC_DIMM_SPD_TYPE = 11,
8a60a071
JG
114 PDC_DIMM_SPD_FRESH_RATE = 12,
115 PDC_DIMM_SPD_BANK_NUM = 17,
1da177e4 116 PDC_DIMM_SPD_CAS_LATENCY = 18,
8a60a071 117 PDC_DIMM_SPD_ATTRIBUTE = 21,
1da177e4 118 PDC_DIMM_SPD_ROW_PRE_CHARGE = 27,
8a60a071 119 PDC_DIMM_SPD_ROW_ACTIVE_DELAY = 28,
1da177e4
LT
120 PDC_DIMM_SPD_RAS_CAS_DELAY = 29,
121 PDC_DIMM_SPD_ACTIVE_PRECHARGE = 30,
122 PDC_DIMM_SPD_SYSTEM_FREQ = 126,
8a60a071 123 PDC_CTL_STATUS = 0x08,
1da177e4
LT
124 PDC_DIMM_WINDOW_CTLR = 0x0C,
125 PDC_TIME_CONTROL = 0x3C,
126 PDC_TIME_PERIOD = 0x40,
127 PDC_TIME_COUNTER = 0x44,
128 PDC_GENERAL_CTLR = 0x484,
129 PCI_PLL_INIT = 0x8A531824,
130 PCI_X_TCOUNT = 0xEE1E5CFF
131};
132
133
134struct pdc_port_priv {
135 u8 dimm_buf[(ATA_PRD_SZ * ATA_MAX_PRD) + 512];
136 u8 *pkt;
137 dma_addr_t pkt_dma;
138};
139
140struct pdc_host_priv {
a9afd7cd 141 void __iomem *dimm_mmio;
1da177e4
LT
142
143 unsigned int doing_hdma;
144 unsigned int hdma_prod;
145 unsigned int hdma_cons;
146 struct {
147 struct ata_queued_cmd *qc;
148 unsigned int seq;
149 unsigned long pkt_ofs;
150 } hdma[32];
151};
152
153
154static int pdc_sata_init_one (struct pci_dev *pdev, const struct pci_device_id *ent);
155static irqreturn_t pdc20621_interrupt (int irq, void *dev_instance, struct pt_regs *regs);
156static void pdc_eng_timeout(struct ata_port *ap);
157static void pdc_20621_phy_reset (struct ata_port *ap);
158static int pdc_port_start(struct ata_port *ap);
159static void pdc_port_stop(struct ata_port *ap);
160static void pdc20621_qc_prep(struct ata_queued_cmd *qc);
057ace5e
JG
161static void pdc_tf_load_mmio(struct ata_port *ap, const struct ata_taskfile *tf);
162static void pdc_exec_command_mmio(struct ata_port *ap, const struct ata_taskfile *tf);
1da177e4
LT
163static void pdc20621_host_stop(struct ata_host_set *host_set);
164static unsigned int pdc20621_dimm_init(struct ata_probe_ent *pe);
165static int pdc20621_detect_dimm(struct ata_probe_ent *pe);
8a60a071 166static unsigned int pdc20621_i2c_read(struct ata_probe_ent *pe,
1da177e4
LT
167 u32 device, u32 subaddr, u32 *pdata);
168static int pdc20621_prog_dimm0(struct ata_probe_ent *pe);
169static unsigned int pdc20621_prog_dimm_global(struct ata_probe_ent *pe);
170#ifdef ATA_VERBOSE_DEBUG
8a60a071 171static void pdc20621_get_from_dimm(struct ata_probe_ent *pe,
1da177e4
LT
172 void *psource, u32 offset, u32 size);
173#endif
8a60a071 174static void pdc20621_put_to_dimm(struct ata_probe_ent *pe,
1da177e4
LT
175 void *psource, u32 offset, u32 size);
176static void pdc20621_irq_clear(struct ata_port *ap);
177static int pdc20621_qc_issue_prot(struct ata_queued_cmd *qc);
178
179
193515d5 180static struct scsi_host_template pdc_sata_sht = {
1da177e4
LT
181 .module = THIS_MODULE,
182 .name = DRV_NAME,
183 .ioctl = ata_scsi_ioctl,
184 .queuecommand = ata_scsi_queuecmd,
185 .eh_strategy_handler = ata_scsi_error,
186 .can_queue = ATA_DEF_QUEUE,
187 .this_id = ATA_SHT_THIS_ID,
188 .sg_tablesize = LIBATA_MAX_PRD,
189 .max_sectors = ATA_MAX_SECTORS,
190 .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
191 .emulated = ATA_SHT_EMULATED,
192 .use_clustering = ATA_SHT_USE_CLUSTERING,
193 .proc_name = DRV_NAME,
194 .dma_boundary = ATA_DMA_BOUNDARY,
195 .slave_configure = ata_scsi_slave_config,
196 .bios_param = ata_std_bios_param,
1da177e4
LT
197};
198
057ace5e 199static const struct ata_port_operations pdc_20621_ops = {
1da177e4
LT
200 .port_disable = ata_port_disable,
201 .tf_load = pdc_tf_load_mmio,
202 .tf_read = ata_tf_read,
203 .check_status = ata_check_status,
204 .exec_command = pdc_exec_command_mmio,
205 .dev_select = ata_std_dev_select,
206 .phy_reset = pdc_20621_phy_reset,
207 .qc_prep = pdc20621_qc_prep,
208 .qc_issue = pdc20621_qc_issue_prot,
209 .eng_timeout = pdc_eng_timeout,
210 .irq_handler = pdc20621_interrupt,
211 .irq_clear = pdc20621_irq_clear,
212 .port_start = pdc_port_start,
213 .port_stop = pdc_port_stop,
214 .host_stop = pdc20621_host_stop,
215};
216
98ac62de 217static const struct ata_port_info pdc_port_info[] = {
1da177e4
LT
218 /* board_20621 */
219 {
220 .sht = &pdc_sata_sht,
221 .host_flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
50630195
JG
222 ATA_FLAG_SRST | ATA_FLAG_MMIO |
223 ATA_FLAG_NO_ATAPI,
1da177e4
LT
224 .pio_mask = 0x1f, /* pio0-4 */
225 .mwdma_mask = 0x07, /* mwdma0-2 */
226 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
227 .port_ops = &pdc_20621_ops,
228 },
229
230};
231
3b7d697d 232static const struct pci_device_id pdc_sata_pci_tbl[] = {
1da177e4
LT
233 { PCI_VENDOR_ID_PROMISE, 0x6622, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
234 board_20621 },
235 { } /* terminate list */
236};
237
238
239static struct pci_driver pdc_sata_pci_driver = {
240 .name = DRV_NAME,
241 .id_table = pdc_sata_pci_tbl,
242 .probe = pdc_sata_init_one,
243 .remove = ata_pci_remove_one,
244};
245
246
247static void pdc20621_host_stop(struct ata_host_set *host_set)
248{
374b1873 249 struct pci_dev *pdev = to_pci_dev(host_set->dev);
1da177e4 250 struct pdc_host_priv *hpriv = host_set->private_data;
a9afd7cd 251 void __iomem *dimm_mmio = hpriv->dimm_mmio;
1da177e4 252
374b1873 253 pci_iounmap(pdev, dimm_mmio);
1da177e4 254 kfree(hpriv);
aa8f0dc6 255
374b1873 256 pci_iounmap(pdev, host_set->mmio_base);
1da177e4
LT
257}
258
259static int pdc_port_start(struct ata_port *ap)
260{
261 struct device *dev = ap->host_set->dev;
262 struct pdc_port_priv *pp;
263 int rc;
264
265 rc = ata_port_start(ap);
266 if (rc)
267 return rc;
268
269 pp = kmalloc(sizeof(*pp), GFP_KERNEL);
270 if (!pp) {
271 rc = -ENOMEM;
272 goto err_out;
273 }
274 memset(pp, 0, sizeof(*pp));
275
276 pp->pkt = dma_alloc_coherent(dev, 128, &pp->pkt_dma, GFP_KERNEL);
277 if (!pp->pkt) {
278 rc = -ENOMEM;
279 goto err_out_kfree;
280 }
281
282 ap->private_data = pp;
283
284 return 0;
285
286err_out_kfree:
287 kfree(pp);
288err_out:
289 ata_port_stop(ap);
290 return rc;
291}
292
293
294static void pdc_port_stop(struct ata_port *ap)
295{
296 struct device *dev = ap->host_set->dev;
297 struct pdc_port_priv *pp = ap->private_data;
298
299 ap->private_data = NULL;
300 dma_free_coherent(dev, 128, pp->pkt, pp->pkt_dma);
301 kfree(pp);
302 ata_port_stop(ap);
303}
304
305
306static void pdc_20621_phy_reset (struct ata_port *ap)
307{
308 VPRINTK("ENTER\n");
309 ap->cbl = ATA_CBL_SATA;
310 ata_port_probe(ap);
311 ata_bus_reset(ap);
312}
313
314static inline void pdc20621_ata_sg(struct ata_taskfile *tf, u8 *buf,
315 unsigned int portno,
316 unsigned int total_len)
317{
318 u32 addr;
319 unsigned int dw = PDC_DIMM_APKT_PRD >> 2;
320 u32 *buf32 = (u32 *) buf;
321
322 /* output ATA packet S/G table */
323 addr = PDC_20621_DIMM_BASE + PDC_20621_DIMM_DATA +
324 (PDC_DIMM_DATA_STEP * portno);
325 VPRINTK("ATA sg addr 0x%x, %d\n", addr, addr);
326 buf32[dw] = cpu_to_le32(addr);
327 buf32[dw + 1] = cpu_to_le32(total_len | ATA_PRD_EOT);
328
329 VPRINTK("ATA PSG @ %x == (0x%x, 0x%x)\n",
330 PDC_20621_DIMM_BASE +
331 (PDC_DIMM_WINDOW_STEP * portno) +
332 PDC_DIMM_APKT_PRD,
333 buf32[dw], buf32[dw + 1]);
334}
335
336static inline void pdc20621_host_sg(struct ata_taskfile *tf, u8 *buf,
337 unsigned int portno,
338 unsigned int total_len)
339{
340 u32 addr;
341 unsigned int dw = PDC_DIMM_HPKT_PRD >> 2;
342 u32 *buf32 = (u32 *) buf;
343
344 /* output Host DMA packet S/G table */
345 addr = PDC_20621_DIMM_BASE + PDC_20621_DIMM_DATA +
346 (PDC_DIMM_DATA_STEP * portno);
347
348 buf32[dw] = cpu_to_le32(addr);
349 buf32[dw + 1] = cpu_to_le32(total_len | ATA_PRD_EOT);
350
351 VPRINTK("HOST PSG @ %x == (0x%x, 0x%x)\n",
352 PDC_20621_DIMM_BASE +
353 (PDC_DIMM_WINDOW_STEP * portno) +
354 PDC_DIMM_HPKT_PRD,
355 buf32[dw], buf32[dw + 1]);
356}
357
358static inline unsigned int pdc20621_ata_pkt(struct ata_taskfile *tf,
359 unsigned int devno, u8 *buf,
360 unsigned int portno)
361{
362 unsigned int i, dw;
363 u32 *buf32 = (u32 *) buf;
364 u8 dev_reg;
365
366 unsigned int dimm_sg = PDC_20621_DIMM_BASE +
367 (PDC_DIMM_WINDOW_STEP * portno) +
368 PDC_DIMM_APKT_PRD;
369 VPRINTK("ENTER, dimm_sg == 0x%x, %d\n", dimm_sg, dimm_sg);
370
371 i = PDC_DIMM_ATA_PKT;
372
373 /*
374 * Set up ATA packet
375 */
376 if ((tf->protocol == ATA_PROT_DMA) && (!(tf->flags & ATA_TFLAG_WRITE)))
377 buf[i++] = PDC_PKT_READ;
378 else if (tf->protocol == ATA_PROT_NODATA)
379 buf[i++] = PDC_PKT_NODATA;
380 else
381 buf[i++] = 0;
382 buf[i++] = 0; /* reserved */
383 buf[i++] = portno + 1; /* seq. id */
384 buf[i++] = 0xff; /* delay seq. id */
385
386 /* dimm dma S/G, and next-pkt */
387 dw = i >> 2;
388 if (tf->protocol == ATA_PROT_NODATA)
389 buf32[dw] = 0;
390 else
391 buf32[dw] = cpu_to_le32(dimm_sg);
392 buf32[dw + 1] = 0;
393 i += 8;
394
395 if (devno == 0)
396 dev_reg = ATA_DEVICE_OBS;
397 else
398 dev_reg = ATA_DEVICE_OBS | ATA_DEV1;
399
400 /* select device */
401 buf[i++] = (1 << 5) | PDC_PKT_CLEAR_BSY | ATA_REG_DEVICE;
402 buf[i++] = dev_reg;
403
404 /* device control register */
405 buf[i++] = (1 << 5) | PDC_REG_DEVCTL;
406 buf[i++] = tf->ctl;
407
408 return i;
409}
410
411static inline void pdc20621_host_pkt(struct ata_taskfile *tf, u8 *buf,
412 unsigned int portno)
413{
414 unsigned int dw;
415 u32 tmp, *buf32 = (u32 *) buf;
416
417 unsigned int host_sg = PDC_20621_DIMM_BASE +
418 (PDC_DIMM_WINDOW_STEP * portno) +
419 PDC_DIMM_HOST_PRD;
420 unsigned int dimm_sg = PDC_20621_DIMM_BASE +
421 (PDC_DIMM_WINDOW_STEP * portno) +
422 PDC_DIMM_HPKT_PRD;
423 VPRINTK("ENTER, dimm_sg == 0x%x, %d\n", dimm_sg, dimm_sg);
424 VPRINTK("host_sg == 0x%x, %d\n", host_sg, host_sg);
425
426 dw = PDC_DIMM_HOST_PKT >> 2;
427
428 /*
429 * Set up Host DMA packet
430 */
431 if ((tf->protocol == ATA_PROT_DMA) && (!(tf->flags & ATA_TFLAG_WRITE)))
432 tmp = PDC_PKT_READ;
433 else
434 tmp = 0;
435 tmp |= ((portno + 1 + 4) << 16); /* seq. id */
436 tmp |= (0xff << 24); /* delay seq. id */
437 buf32[dw + 0] = cpu_to_le32(tmp);
438 buf32[dw + 1] = cpu_to_le32(host_sg);
439 buf32[dw + 2] = cpu_to_le32(dimm_sg);
440 buf32[dw + 3] = 0;
441
442 VPRINTK("HOST PKT @ %x == (0x%x 0x%x 0x%x 0x%x)\n",
443 PDC_20621_DIMM_BASE + (PDC_DIMM_WINDOW_STEP * portno) +
444 PDC_DIMM_HOST_PKT,
445 buf32[dw + 0],
446 buf32[dw + 1],
447 buf32[dw + 2],
448 buf32[dw + 3]);
449}
450
451static void pdc20621_dma_prep(struct ata_queued_cmd *qc)
452{
cedc9a47 453 struct scatterlist *sg;
1da177e4
LT
454 struct ata_port *ap = qc->ap;
455 struct pdc_port_priv *pp = ap->private_data;
ea6ba10b 456 void __iomem *mmio = ap->host_set->mmio_base;
1da177e4 457 struct pdc_host_priv *hpriv = ap->host_set->private_data;
ea6ba10b 458 void __iomem *dimm_mmio = hpriv->dimm_mmio;
1da177e4 459 unsigned int portno = ap->port_no;
cedc9a47 460 unsigned int i, idx, total_len = 0, sgt_len;
1da177e4
LT
461 u32 *buf = (u32 *) &pp->dimm_buf[PDC_DIMM_HEADER_SZ];
462
463 assert(qc->flags & ATA_QCFLAG_DMAMAP);
464
465 VPRINTK("ata%u: ENTER\n", ap->id);
466
467 /* hard-code chip #0 */
468 mmio += PDC_CHIP0_OFS;
469
470 /*
471 * Build S/G table
472 */
1da177e4 473 idx = 0;
cedc9a47
JG
474 ata_for_each_sg(sg, qc) {
475 buf[idx++] = cpu_to_le32(sg_dma_address(sg));
476 buf[idx++] = cpu_to_le32(sg_dma_len(sg));
477 total_len += sg_dma_len(sg);
1da177e4
LT
478 }
479 buf[idx - 1] |= cpu_to_le32(ATA_PRD_EOT);
480 sgt_len = idx * 4;
481
482 /*
483 * Build ATA, host DMA packets
484 */
485 pdc20621_host_sg(&qc->tf, &pp->dimm_buf[0], portno, total_len);
486 pdc20621_host_pkt(&qc->tf, &pp->dimm_buf[0], portno);
487
488 pdc20621_ata_sg(&qc->tf, &pp->dimm_buf[0], portno, total_len);
489 i = pdc20621_ata_pkt(&qc->tf, qc->dev->devno, &pp->dimm_buf[0], portno);
490
491 if (qc->tf.flags & ATA_TFLAG_LBA48)
492 i = pdc_prep_lba48(&qc->tf, &pp->dimm_buf[0], i);
493 else
494 i = pdc_prep_lba28(&qc->tf, &pp->dimm_buf[0], i);
495
496 pdc_pkt_footer(&qc->tf, &pp->dimm_buf[0], i);
497
498 /* copy three S/G tables and two packets to DIMM MMIO window */
499 memcpy_toio(dimm_mmio + (portno * PDC_DIMM_WINDOW_STEP),
500 &pp->dimm_buf, PDC_DIMM_HEADER_SZ);
501 memcpy_toio(dimm_mmio + (portno * PDC_DIMM_WINDOW_STEP) +
502 PDC_DIMM_HOST_PRD,
503 &pp->dimm_buf[PDC_DIMM_HEADER_SZ], sgt_len);
504
505 /* force host FIFO dump */
506 writel(0x00000001, mmio + PDC_20621_GENERAL_CTL);
507
508 readl(dimm_mmio); /* MMIO PCI posting flush */
509
510 VPRINTK("ata pkt buf ofs %u, prd size %u, mmio copied\n", i, sgt_len);
511}
512
513static void pdc20621_nodata_prep(struct ata_queued_cmd *qc)
514{
515 struct ata_port *ap = qc->ap;
516 struct pdc_port_priv *pp = ap->private_data;
ea6ba10b 517 void __iomem *mmio = ap->host_set->mmio_base;
1da177e4 518 struct pdc_host_priv *hpriv = ap->host_set->private_data;
ea6ba10b 519 void __iomem *dimm_mmio = hpriv->dimm_mmio;
1da177e4
LT
520 unsigned int portno = ap->port_no;
521 unsigned int i;
522
523 VPRINTK("ata%u: ENTER\n", ap->id);
524
525 /* hard-code chip #0 */
526 mmio += PDC_CHIP0_OFS;
527
528 i = pdc20621_ata_pkt(&qc->tf, qc->dev->devno, &pp->dimm_buf[0], portno);
529
530 if (qc->tf.flags & ATA_TFLAG_LBA48)
531 i = pdc_prep_lba48(&qc->tf, &pp->dimm_buf[0], i);
532 else
533 i = pdc_prep_lba28(&qc->tf, &pp->dimm_buf[0], i);
534
535 pdc_pkt_footer(&qc->tf, &pp->dimm_buf[0], i);
536
537 /* copy three S/G tables and two packets to DIMM MMIO window */
538 memcpy_toio(dimm_mmio + (portno * PDC_DIMM_WINDOW_STEP),
539 &pp->dimm_buf, PDC_DIMM_HEADER_SZ);
540
541 /* force host FIFO dump */
542 writel(0x00000001, mmio + PDC_20621_GENERAL_CTL);
543
544 readl(dimm_mmio); /* MMIO PCI posting flush */
545
546 VPRINTK("ata pkt buf ofs %u, mmio copied\n", i);
547}
548
549static void pdc20621_qc_prep(struct ata_queued_cmd *qc)
550{
551 switch (qc->tf.protocol) {
552 case ATA_PROT_DMA:
553 pdc20621_dma_prep(qc);
554 break;
555 case ATA_PROT_NODATA:
556 pdc20621_nodata_prep(qc);
557 break;
558 default:
559 break;
560 }
561}
562
563static void __pdc20621_push_hdma(struct ata_queued_cmd *qc,
564 unsigned int seq,
565 u32 pkt_ofs)
566{
567 struct ata_port *ap = qc->ap;
568 struct ata_host_set *host_set = ap->host_set;
ea6ba10b 569 void __iomem *mmio = host_set->mmio_base;
1da177e4
LT
570
571 /* hard-code chip #0 */
572 mmio += PDC_CHIP0_OFS;
573
574 writel(0x00000001, mmio + PDC_20621_SEQCTL + (seq * 4));
575 readl(mmio + PDC_20621_SEQCTL + (seq * 4)); /* flush */
576
577 writel(pkt_ofs, mmio + PDC_HDMA_PKT_SUBMIT);
578 readl(mmio + PDC_HDMA_PKT_SUBMIT); /* flush */
579}
580
581static void pdc20621_push_hdma(struct ata_queued_cmd *qc,
582 unsigned int seq,
583 u32 pkt_ofs)
584{
585 struct ata_port *ap = qc->ap;
586 struct pdc_host_priv *pp = ap->host_set->private_data;
587 unsigned int idx = pp->hdma_prod & PDC_HDMA_Q_MASK;
588
589 if (!pp->doing_hdma) {
590 __pdc20621_push_hdma(qc, seq, pkt_ofs);
591 pp->doing_hdma = 1;
592 return;
593 }
594
595 pp->hdma[idx].qc = qc;
596 pp->hdma[idx].seq = seq;
597 pp->hdma[idx].pkt_ofs = pkt_ofs;
598 pp->hdma_prod++;
599}
600
601static void pdc20621_pop_hdma(struct ata_queued_cmd *qc)
602{
603 struct ata_port *ap = qc->ap;
604 struct pdc_host_priv *pp = ap->host_set->private_data;
605 unsigned int idx = pp->hdma_cons & PDC_HDMA_Q_MASK;
606
607 /* if nothing on queue, we're done */
608 if (pp->hdma_prod == pp->hdma_cons) {
609 pp->doing_hdma = 0;
610 return;
611 }
612
613 __pdc20621_push_hdma(pp->hdma[idx].qc, pp->hdma[idx].seq,
614 pp->hdma[idx].pkt_ofs);
615 pp->hdma_cons++;
616}
617
618#ifdef ATA_VERBOSE_DEBUG
619static void pdc20621_dump_hdma(struct ata_queued_cmd *qc)
620{
621 struct ata_port *ap = qc->ap;
622 unsigned int port_no = ap->port_no;
623 struct pdc_host_priv *hpriv = ap->host_set->private_data;
624 void *dimm_mmio = hpriv->dimm_mmio;
625
626 dimm_mmio += (port_no * PDC_DIMM_WINDOW_STEP);
627 dimm_mmio += PDC_DIMM_HOST_PKT;
628
629 printk(KERN_ERR "HDMA[0] == 0x%08X\n", readl(dimm_mmio));
630 printk(KERN_ERR "HDMA[1] == 0x%08X\n", readl(dimm_mmio + 4));
631 printk(KERN_ERR "HDMA[2] == 0x%08X\n", readl(dimm_mmio + 8));
632 printk(KERN_ERR "HDMA[3] == 0x%08X\n", readl(dimm_mmio + 12));
633}
634#else
635static inline void pdc20621_dump_hdma(struct ata_queued_cmd *qc) { }
636#endif /* ATA_VERBOSE_DEBUG */
637
638static void pdc20621_packet_start(struct ata_queued_cmd *qc)
639{
640 struct ata_port *ap = qc->ap;
641 struct ata_host_set *host_set = ap->host_set;
642 unsigned int port_no = ap->port_no;
ea6ba10b 643 void __iomem *mmio = host_set->mmio_base;
1da177e4
LT
644 unsigned int rw = (qc->tf.flags & ATA_TFLAG_WRITE);
645 u8 seq = (u8) (port_no + 1);
646 unsigned int port_ofs;
647
648 /* hard-code chip #0 */
649 mmio += PDC_CHIP0_OFS;
650
651 VPRINTK("ata%u: ENTER\n", ap->id);
652
653 wmb(); /* flush PRD, pkt writes */
654
655 port_ofs = PDC_20621_DIMM_BASE + (PDC_DIMM_WINDOW_STEP * port_no);
656
657 /* if writing, we (1) DMA to DIMM, then (2) do ATA command */
658 if (rw && qc->tf.protocol == ATA_PROT_DMA) {
659 seq += 4;
660
661 pdc20621_dump_hdma(qc);
662 pdc20621_push_hdma(qc, seq, port_ofs + PDC_DIMM_HOST_PKT);
663 VPRINTK("queued ofs 0x%x (%u), seq %u\n",
664 port_ofs + PDC_DIMM_HOST_PKT,
665 port_ofs + PDC_DIMM_HOST_PKT,
666 seq);
667 } else {
668 writel(0x00000001, mmio + PDC_20621_SEQCTL + (seq * 4));
669 readl(mmio + PDC_20621_SEQCTL + (seq * 4)); /* flush */
670
671 writel(port_ofs + PDC_DIMM_ATA_PKT,
a9afd7cd
AV
672 (void __iomem *) ap->ioaddr.cmd_addr + PDC_PKT_SUBMIT);
673 readl((void __iomem *) ap->ioaddr.cmd_addr + PDC_PKT_SUBMIT);
1da177e4
LT
674 VPRINTK("submitted ofs 0x%x (%u), seq %u\n",
675 port_ofs + PDC_DIMM_ATA_PKT,
676 port_ofs + PDC_DIMM_ATA_PKT,
677 seq);
678 }
679}
680
681static int pdc20621_qc_issue_prot(struct ata_queued_cmd *qc)
682{
683 switch (qc->tf.protocol) {
684 case ATA_PROT_DMA:
685 case ATA_PROT_NODATA:
686 pdc20621_packet_start(qc);
687 return 0;
688
689 case ATA_PROT_ATAPI_DMA:
690 BUG();
691 break;
692
693 default:
694 break;
695 }
696
697 return ata_qc_issue_prot(qc);
698}
699
700static inline unsigned int pdc20621_host_intr( struct ata_port *ap,
701 struct ata_queued_cmd *qc,
702 unsigned int doing_hdma,
ea6ba10b 703 void __iomem *mmio)
1da177e4
LT
704{
705 unsigned int port_no = ap->port_no;
706 unsigned int port_ofs =
707 PDC_20621_DIMM_BASE + (PDC_DIMM_WINDOW_STEP * port_no);
708 u8 status;
709 unsigned int handled = 0;
710
711 VPRINTK("ENTER\n");
712
713 if ((qc->tf.protocol == ATA_PROT_DMA) && /* read */
714 (!(qc->tf.flags & ATA_TFLAG_WRITE))) {
715
716 /* step two - DMA from DIMM to host */
717 if (doing_hdma) {
718 VPRINTK("ata%u: read hdma, 0x%x 0x%x\n", ap->id,
719 readl(mmio + 0x104), readl(mmio + PDC_HDMA_CTLSTAT));
720 /* get drive status; clear intr; complete txn */
a22e2eb0
AL
721 qc->err_mask |= ac_err_mask(ata_wait_idle(ap));
722 ata_qc_complete(qc);
1da177e4
LT
723 pdc20621_pop_hdma(qc);
724 }
725
726 /* step one - exec ATA command */
727 else {
728 u8 seq = (u8) (port_no + 1 + 4);
729 VPRINTK("ata%u: read ata, 0x%x 0x%x\n", ap->id,
730 readl(mmio + 0x104), readl(mmio + PDC_HDMA_CTLSTAT));
731
732 /* submit hdma pkt */
733 pdc20621_dump_hdma(qc);
734 pdc20621_push_hdma(qc, seq,
735 port_ofs + PDC_DIMM_HOST_PKT);
736 }
737 handled = 1;
738
739 } else if (qc->tf.protocol == ATA_PROT_DMA) { /* write */
740
741 /* step one - DMA from host to DIMM */
742 if (doing_hdma) {
743 u8 seq = (u8) (port_no + 1);
744 VPRINTK("ata%u: write hdma, 0x%x 0x%x\n", ap->id,
745 readl(mmio + 0x104), readl(mmio + PDC_HDMA_CTLSTAT));
746
747 /* submit ata pkt */
748 writel(0x00000001, mmio + PDC_20621_SEQCTL + (seq * 4));
749 readl(mmio + PDC_20621_SEQCTL + (seq * 4));
750 writel(port_ofs + PDC_DIMM_ATA_PKT,
a9afd7cd
AV
751 (void __iomem *) ap->ioaddr.cmd_addr + PDC_PKT_SUBMIT);
752 readl((void __iomem *) ap->ioaddr.cmd_addr + PDC_PKT_SUBMIT);
1da177e4
LT
753 }
754
755 /* step two - execute ATA command */
756 else {
757 VPRINTK("ata%u: write ata, 0x%x 0x%x\n", ap->id,
758 readl(mmio + 0x104), readl(mmio + PDC_HDMA_CTLSTAT));
759 /* get drive status; clear intr; complete txn */
a22e2eb0
AL
760 qc->err_mask |= ac_err_mask(ata_wait_idle(ap));
761 ata_qc_complete(qc);
1da177e4
LT
762 pdc20621_pop_hdma(qc);
763 }
764 handled = 1;
765
766 /* command completion, but no data xfer */
767 } else if (qc->tf.protocol == ATA_PROT_NODATA) {
768
769 status = ata_busy_wait(ap, ATA_BUSY | ATA_DRQ, 1000);
770 DPRINTK("BUS_NODATA (drv_stat 0x%X)\n", status);
a22e2eb0
AL
771 qc->err_mask |= ac_err_mask(status);
772 ata_qc_complete(qc);
1da177e4
LT
773 handled = 1;
774
775 } else {
776 ap->stats.idle_irq++;
777 }
778
779 return handled;
780}
781
782static void pdc20621_irq_clear(struct ata_port *ap)
783{
784 struct ata_host_set *host_set = ap->host_set;
ea6ba10b 785 void __iomem *mmio = host_set->mmio_base;
1da177e4
LT
786
787 mmio += PDC_CHIP0_OFS;
788
789 readl(mmio + PDC_20621_SEQMASK);
790}
791
792static irqreturn_t pdc20621_interrupt (int irq, void *dev_instance, struct pt_regs *regs)
793{
794 struct ata_host_set *host_set = dev_instance;
795 struct ata_port *ap;
796 u32 mask = 0;
797 unsigned int i, tmp, port_no;
798 unsigned int handled = 0;
ea6ba10b 799 void __iomem *mmio_base;
1da177e4
LT
800
801 VPRINTK("ENTER\n");
802
803 if (!host_set || !host_set->mmio_base) {
804 VPRINTK("QUICK EXIT\n");
805 return IRQ_NONE;
806 }
807
808 mmio_base = host_set->mmio_base;
809
810 /* reading should also clear interrupts */
811 mmio_base += PDC_CHIP0_OFS;
812 mask = readl(mmio_base + PDC_20621_SEQMASK);
813 VPRINTK("mask == 0x%x\n", mask);
814
815 if (mask == 0xffffffff) {
816 VPRINTK("QUICK EXIT 2\n");
817 return IRQ_NONE;
818 }
819 mask &= 0xffff; /* only 16 tags possible */
820 if (!mask) {
821 VPRINTK("QUICK EXIT 3\n");
822 return IRQ_NONE;
823 }
824
825 spin_lock(&host_set->lock);
826
827 for (i = 1; i < 9; i++) {
828 port_no = i - 1;
829 if (port_no > 3)
830 port_no -= 4;
831 if (port_no >= host_set->n_ports)
832 ap = NULL;
833 else
834 ap = host_set->ports[port_no];
835 tmp = mask & (1 << i);
836 VPRINTK("seq %u, port_no %u, ap %p, tmp %x\n", i, port_no, ap, tmp);
c1389503
TH
837 if (tmp && ap &&
838 !(ap->flags & (ATA_FLAG_PORT_DISABLED | ATA_FLAG_NOINTR))) {
1da177e4
LT
839 struct ata_queued_cmd *qc;
840
841 qc = ata_qc_from_tag(ap, ap->active_tag);
842 if (qc && (!(qc->tf.ctl & ATA_NIEN)))
843 handled += pdc20621_host_intr(ap, qc, (i > 4),
844 mmio_base);
845 }
846 }
847
848 spin_unlock(&host_set->lock);
849
850 VPRINTK("mask == 0x%x\n", mask);
851
852 VPRINTK("EXIT\n");
853
854 return IRQ_RETVAL(handled);
855}
856
857static void pdc_eng_timeout(struct ata_port *ap)
858{
859 u8 drv_stat;
b8f6153e 860 struct ata_host_set *host_set = ap->host_set;
1da177e4 861 struct ata_queued_cmd *qc;
b8f6153e 862 unsigned long flags;
1da177e4
LT
863
864 DPRINTK("ENTER\n");
865
b8f6153e
JG
866 spin_lock_irqsave(&host_set->lock, flags);
867
1da177e4
LT
868 qc = ata_qc_from_tag(ap, ap->active_tag);
869 if (!qc) {
870 printk(KERN_ERR "ata%u: BUG: timeout without command\n",
871 ap->id);
872 goto out;
873 }
874
875 /* hack alert! We cannot use the supplied completion
876 * function from inside the ->eh_strategy_handler() thread.
877 * libata is the only user of ->eh_strategy_handler() in
878 * any kernel, so the default scsi_done() assumes it is
879 * not being called from the SCSI EH.
880 */
881 qc->scsidone = scsi_finish_command;
882
883 switch (qc->tf.protocol) {
884 case ATA_PROT_DMA:
885 case ATA_PROT_NODATA:
886 printk(KERN_ERR "ata%u: command timeout\n", ap->id);
a22e2eb0
AL
887 qc->err_mask |= __ac_err_mask(ata_wait_idle(ap));
888 ata_qc_complete(qc);
1da177e4
LT
889 break;
890
891 default:
892 drv_stat = ata_busy_wait(ap, ATA_BUSY | ATA_DRQ, 1000);
893
894 printk(KERN_ERR "ata%u: unknown timeout, cmd 0x%x stat 0x%x\n",
895 ap->id, qc->tf.command, drv_stat);
896
a22e2eb0
AL
897 qc->err_mask |= ac_err_mask(drv_stat);
898 ata_qc_complete(qc);
1da177e4
LT
899 break;
900 }
901
902out:
b8f6153e 903 spin_unlock_irqrestore(&host_set->lock, flags);
1da177e4
LT
904 DPRINTK("EXIT\n");
905}
906
057ace5e 907static void pdc_tf_load_mmio(struct ata_port *ap, const struct ata_taskfile *tf)
1da177e4
LT
908{
909 WARN_ON (tf->protocol == ATA_PROT_DMA ||
910 tf->protocol == ATA_PROT_NODATA);
911 ata_tf_load(ap, tf);
912}
913
914
057ace5e 915static void pdc_exec_command_mmio(struct ata_port *ap, const struct ata_taskfile *tf)
1da177e4
LT
916{
917 WARN_ON (tf->protocol == ATA_PROT_DMA ||
918 tf->protocol == ATA_PROT_NODATA);
919 ata_exec_command(ap, tf);
920}
921
922
923static void pdc_sata_setup_port(struct ata_ioports *port, unsigned long base)
924{
925 port->cmd_addr = base;
926 port->data_addr = base;
927 port->feature_addr =
928 port->error_addr = base + 0x4;
929 port->nsect_addr = base + 0x8;
930 port->lbal_addr = base + 0xc;
931 port->lbam_addr = base + 0x10;
932 port->lbah_addr = base + 0x14;
933 port->device_addr = base + 0x18;
934 port->command_addr =
935 port->status_addr = base + 0x1c;
936 port->altstatus_addr =
937 port->ctl_addr = base + 0x38;
938}
939
940
941#ifdef ATA_VERBOSE_DEBUG
8a60a071 942static void pdc20621_get_from_dimm(struct ata_probe_ent *pe, void *psource,
1da177e4
LT
943 u32 offset, u32 size)
944{
945 u32 window_size;
946 u16 idx;
947 u8 page_mask;
948 long dist;
ea6ba10b 949 void __iomem *mmio = pe->mmio_base;
1da177e4 950 struct pdc_host_priv *hpriv = pe->private_data;
ea6ba10b 951 void __iomem *dimm_mmio = hpriv->dimm_mmio;
1da177e4
LT
952
953 /* hard-code chip #0 */
954 mmio += PDC_CHIP0_OFS;
955
8a60a071
JG
956 page_mask = 0x00;
957 window_size = 0x2000 * 4; /* 32K byte uchar size */
958 idx = (u16) (offset / window_size);
1da177e4
LT
959
960 writel(0x01, mmio + PDC_GENERAL_CTLR);
961 readl(mmio + PDC_GENERAL_CTLR);
962 writel(((idx) << page_mask), mmio + PDC_DIMM_WINDOW_CTLR);
963 readl(mmio + PDC_DIMM_WINDOW_CTLR);
964
965 offset -= (idx * window_size);
966 idx++;
8a60a071 967 dist = ((long) (window_size - (offset + size))) >= 0 ? size :
1da177e4 968 (long) (window_size - offset);
8a60a071 969 memcpy_fromio((char *) psource, (char *) (dimm_mmio + offset / 4),
1da177e4
LT
970 dist);
971
8a60a071 972 psource += dist;
1da177e4
LT
973 size -= dist;
974 for (; (long) size >= (long) window_size ;) {
975 writel(0x01, mmio + PDC_GENERAL_CTLR);
976 readl(mmio + PDC_GENERAL_CTLR);
977 writel(((idx) << page_mask), mmio + PDC_DIMM_WINDOW_CTLR);
978 readl(mmio + PDC_DIMM_WINDOW_CTLR);
8a60a071 979 memcpy_fromio((char *) psource, (char *) (dimm_mmio),
1da177e4
LT
980 window_size / 4);
981 psource += window_size;
982 size -= window_size;
983 idx ++;
984 }
985
986 if (size) {
987 writel(0x01, mmio + PDC_GENERAL_CTLR);
988 readl(mmio + PDC_GENERAL_CTLR);
989 writel(((idx) << page_mask), mmio + PDC_DIMM_WINDOW_CTLR);
990 readl(mmio + PDC_DIMM_WINDOW_CTLR);
8a60a071 991 memcpy_fromio((char *) psource, (char *) (dimm_mmio),
1da177e4
LT
992 size / 4);
993 }
994}
995#endif
996
997
8a60a071 998static void pdc20621_put_to_dimm(struct ata_probe_ent *pe, void *psource,
1da177e4
LT
999 u32 offset, u32 size)
1000{
1001 u32 window_size;
1002 u16 idx;
1003 u8 page_mask;
1004 long dist;
ea6ba10b 1005 void __iomem *mmio = pe->mmio_base;
1da177e4 1006 struct pdc_host_priv *hpriv = pe->private_data;
ea6ba10b 1007 void __iomem *dimm_mmio = hpriv->dimm_mmio;
1da177e4 1008
8a60a071 1009 /* hard-code chip #0 */
1da177e4
LT
1010 mmio += PDC_CHIP0_OFS;
1011
8a60a071
JG
1012 page_mask = 0x00;
1013 window_size = 0x2000 * 4; /* 32K byte uchar size */
1da177e4
LT
1014 idx = (u16) (offset / window_size);
1015
1016 writel(((idx) << page_mask), mmio + PDC_DIMM_WINDOW_CTLR);
1017 readl(mmio + PDC_DIMM_WINDOW_CTLR);
8a60a071 1018 offset -= (idx * window_size);
1da177e4
LT
1019 idx++;
1020 dist = ((long)(s32)(window_size - (offset + size))) >= 0 ? size :
1021 (long) (window_size - offset);
a9afd7cd 1022 memcpy_toio(dimm_mmio + offset / 4, psource, dist);
1da177e4
LT
1023 writel(0x01, mmio + PDC_GENERAL_CTLR);
1024 readl(mmio + PDC_GENERAL_CTLR);
1025
8a60a071 1026 psource += dist;
1da177e4
LT
1027 size -= dist;
1028 for (; (long) size >= (long) window_size ;) {
1029 writel(((idx) << page_mask), mmio + PDC_DIMM_WINDOW_CTLR);
1030 readl(mmio + PDC_DIMM_WINDOW_CTLR);
a9afd7cd 1031 memcpy_toio(dimm_mmio, psource, window_size / 4);
1da177e4
LT
1032 writel(0x01, mmio + PDC_GENERAL_CTLR);
1033 readl(mmio + PDC_GENERAL_CTLR);
1034 psource += window_size;
1035 size -= window_size;
1036 idx ++;
1037 }
8a60a071 1038
1da177e4
LT
1039 if (size) {
1040 writel(((idx) << page_mask), mmio + PDC_DIMM_WINDOW_CTLR);
1041 readl(mmio + PDC_DIMM_WINDOW_CTLR);
a9afd7cd 1042 memcpy_toio(dimm_mmio, psource, size / 4);
1da177e4
LT
1043 writel(0x01, mmio + PDC_GENERAL_CTLR);
1044 readl(mmio + PDC_GENERAL_CTLR);
1045 }
1046}
1047
1048
8a60a071 1049static unsigned int pdc20621_i2c_read(struct ata_probe_ent *pe, u32 device,
1da177e4
LT
1050 u32 subaddr, u32 *pdata)
1051{
ea6ba10b 1052 void __iomem *mmio = pe->mmio_base;
1da177e4 1053 u32 i2creg = 0;
8a60a071 1054 u32 status;
1da177e4
LT
1055 u32 count =0;
1056
1057 /* hard-code chip #0 */
1058 mmio += PDC_CHIP0_OFS;
1059
1060 i2creg |= device << 24;
1061 i2creg |= subaddr << 16;
1062
1063 /* Set the device and subaddress */
1064 writel(i2creg, mmio + PDC_I2C_ADDR_DATA_OFFSET);
1065 readl(mmio + PDC_I2C_ADDR_DATA_OFFSET);
1066
1067 /* Write Control to perform read operation, mask int */
8a60a071 1068 writel(PDC_I2C_READ | PDC_I2C_START | PDC_I2C_MASK_INT,
1da177e4
LT
1069 mmio + PDC_I2C_CONTROL_OFFSET);
1070
1071 for (count = 0; count <= 1000; count ++) {
1072 status = readl(mmio + PDC_I2C_CONTROL_OFFSET);
1073 if (status & PDC_I2C_COMPLETE) {
1074 status = readl(mmio + PDC_I2C_ADDR_DATA_OFFSET);
1075 break;
1076 } else if (count == 1000)
1077 return 0;
1078 }
1079
1080 *pdata = (status >> 8) & 0x000000ff;
8a60a071 1081 return 1;
1da177e4
LT
1082}
1083
1084
1085static int pdc20621_detect_dimm(struct ata_probe_ent *pe)
1086{
1087 u32 data=0 ;
8a60a071 1088 if (pdc20621_i2c_read(pe, PDC_DIMM0_SPD_DEV_ADDRESS,
1da177e4
LT
1089 PDC_DIMM_SPD_SYSTEM_FREQ, &data)) {
1090 if (data == 100)
1091 return 100;
1092 } else
1093 return 0;
8a60a071 1094
1da177e4 1095 if (pdc20621_i2c_read(pe, PDC_DIMM0_SPD_DEV_ADDRESS, 9, &data)) {
8a60a071 1096 if(data <= 0x75)
1da177e4
LT
1097 return 133;
1098 } else
1099 return 0;
8a60a071 1100
1da177e4
LT
1101 return 0;
1102}
1103
1104
1105static int pdc20621_prog_dimm0(struct ata_probe_ent *pe)
1106{
1107 u32 spd0[50];
1108 u32 data = 0;
1109 int size, i;
8a60a071 1110 u8 bdimmsize;
ea6ba10b 1111 void __iomem *mmio = pe->mmio_base;
1da177e4
LT
1112 static const struct {
1113 unsigned int reg;
1114 unsigned int ofs;
1115 } pdc_i2c_read_data [] = {
8a60a071 1116 { PDC_DIMM_SPD_TYPE, 11 },
1da177e4 1117 { PDC_DIMM_SPD_FRESH_RATE, 12 },
8a60a071 1118 { PDC_DIMM_SPD_COLUMN_NUM, 4 },
1da177e4
LT
1119 { PDC_DIMM_SPD_ATTRIBUTE, 21 },
1120 { PDC_DIMM_SPD_ROW_NUM, 3 },
1121 { PDC_DIMM_SPD_BANK_NUM, 17 },
1122 { PDC_DIMM_SPD_MODULE_ROW, 5 },
1123 { PDC_DIMM_SPD_ROW_PRE_CHARGE, 27 },
1124 { PDC_DIMM_SPD_ROW_ACTIVE_DELAY, 28 },
1125 { PDC_DIMM_SPD_RAS_CAS_DELAY, 29 },
1126 { PDC_DIMM_SPD_ACTIVE_PRECHARGE, 30 },
8a60a071 1127 { PDC_DIMM_SPD_CAS_LATENCY, 18 },
1da177e4
LT
1128 };
1129
1130 /* hard-code chip #0 */
1131 mmio += PDC_CHIP0_OFS;
1132
1133 for(i=0; i<ARRAY_SIZE(pdc_i2c_read_data); i++)
1134 pdc20621_i2c_read(pe, PDC_DIMM0_SPD_DEV_ADDRESS,
8a60a071 1135 pdc_i2c_read_data[i].reg,
1da177e4 1136 &spd0[pdc_i2c_read_data[i].ofs]);
8a60a071 1137
1da177e4 1138 data |= (spd0[4] - 8) | ((spd0[21] != 0) << 3) | ((spd0[3]-11) << 4);
8a60a071 1139 data |= ((spd0[17] / 4) << 6) | ((spd0[5] / 2) << 7) |
1da177e4 1140 ((((spd0[27] + 9) / 10) - 1) << 8) ;
8a60a071
JG
1141 data |= (((((spd0[29] > spd0[28])
1142 ? spd0[29] : spd0[28]) + 9) / 10) - 1) << 10;
1da177e4 1143 data |= ((spd0[30] - spd0[29] + 9) / 10 - 2) << 12;
8a60a071
JG
1144
1145 if (spd0[18] & 0x08)
1da177e4
LT
1146 data |= ((0x03) << 14);
1147 else if (spd0[18] & 0x04)
1148 data |= ((0x02) << 14);
1149 else if (spd0[18] & 0x01)
1150 data |= ((0x01) << 14);
1151 else
1152 data |= (0 << 14);
1153
8a60a071 1154 /*
1da177e4
LT
1155 Calculate the size of bDIMMSize (power of 2) and
1156 merge the DIMM size by program start/end address.
1157 */
1158
1159 bdimmsize = spd0[4] + (spd0[5] / 2) + spd0[3] + (spd0[17] / 2) + 3;
1160 size = (1 << bdimmsize) >> 20; /* size = xxx(MB) */
1161 data |= (((size / 16) - 1) << 16);
1162 data |= (0 << 23);
1163 data |= 8;
8a60a071 1164 writel(data, mmio + PDC_DIMM0_CONTROL_OFFSET);
1da177e4 1165 readl(mmio + PDC_DIMM0_CONTROL_OFFSET);
8a60a071 1166 return size;
1da177e4
LT
1167}
1168
1169
1170static unsigned int pdc20621_prog_dimm_global(struct ata_probe_ent *pe)
1171{
1172 u32 data, spd0;
1173 int error, i;
ea6ba10b 1174 void __iomem *mmio = pe->mmio_base;
1da177e4
LT
1175
1176 /* hard-code chip #0 */
1177 mmio += PDC_CHIP0_OFS;
1178
1179 /*
1180 Set To Default : DIMM Module Global Control Register (0x022259F1)
1181 DIMM Arbitration Disable (bit 20)
1182 DIMM Data/Control Output Driving Selection (bit12 - bit15)
1183 Refresh Enable (bit 17)
1184 */
1185
8a60a071 1186 data = 0x022259F1;
1da177e4
LT
1187 writel(data, mmio + PDC_SDRAM_CONTROL_OFFSET);
1188 readl(mmio + PDC_SDRAM_CONTROL_OFFSET);
1189
1190 /* Turn on for ECC */
8a60a071 1191 pdc20621_i2c_read(pe, PDC_DIMM0_SPD_DEV_ADDRESS,
1da177e4
LT
1192 PDC_DIMM_SPD_TYPE, &spd0);
1193 if (spd0 == 0x02) {
1194 data |= (0x01 << 16);
1195 writel(data, mmio + PDC_SDRAM_CONTROL_OFFSET);
1196 readl(mmio + PDC_SDRAM_CONTROL_OFFSET);
1197 printk(KERN_ERR "Local DIMM ECC Enabled\n");
1198 }
1199
1200 /* DIMM Initialization Select/Enable (bit 18/19) */
1201 data &= (~(1<<18));
1202 data |= (1<<19);
1203 writel(data, mmio + PDC_SDRAM_CONTROL_OFFSET);
1204
8a60a071 1205 error = 1;
1da177e4
LT
1206 for (i = 1; i <= 10; i++) { /* polling ~5 secs */
1207 data = readl(mmio + PDC_SDRAM_CONTROL_OFFSET);
1208 if (!(data & (1<<19))) {
1209 error = 0;
8a60a071 1210 break;
1da177e4
LT
1211 }
1212 msleep(i*100);
1213 }
1214 return error;
1215}
8a60a071 1216
1da177e4
LT
1217
1218static unsigned int pdc20621_dimm_init(struct ata_probe_ent *pe)
1219{
8a60a071 1220 int speed, size, length;
1da177e4
LT
1221 u32 addr,spd0,pci_status;
1222 u32 tmp=0;
1223 u32 time_period=0;
1224 u32 tcount=0;
1225 u32 ticks=0;
1226 u32 clock=0;
1227 u32 fparam=0;
ea6ba10b 1228 void __iomem *mmio = pe->mmio_base;
1da177e4
LT
1229
1230 /* hard-code chip #0 */
1231 mmio += PDC_CHIP0_OFS;
1232
1233 /* Initialize PLL based upon PCI Bus Frequency */
1234
1235 /* Initialize Time Period Register */
1236 writel(0xffffffff, mmio + PDC_TIME_PERIOD);
1237 time_period = readl(mmio + PDC_TIME_PERIOD);
1238 VPRINTK("Time Period Register (0x40): 0x%x\n", time_period);
1239
1240 /* Enable timer */
1241 writel(0x00001a0, mmio + PDC_TIME_CONTROL);
1242 readl(mmio + PDC_TIME_CONTROL);
1243
1244 /* Wait 3 seconds */
1245 msleep(3000);
1246
8a60a071 1247 /*
1da177e4
LT
1248 When timer is enabled, counter is decreased every internal
1249 clock cycle.
1250 */
1251
1252 tcount = readl(mmio + PDC_TIME_COUNTER);
1253 VPRINTK("Time Counter Register (0x44): 0x%x\n", tcount);
1254
8a60a071 1255 /*
1da177e4
LT
1256 If SX4 is on PCI-X bus, after 3 seconds, the timer counter
1257 register should be >= (0xffffffff - 3x10^8).
1258 */
1259 if(tcount >= PCI_X_TCOUNT) {
1260 ticks = (time_period - tcount);
1261 VPRINTK("Num counters 0x%x (%d)\n", ticks, ticks);
8a60a071 1262
1da177e4
LT
1263 clock = (ticks / 300000);
1264 VPRINTK("10 * Internal clk = 0x%x (%d)\n", clock, clock);
8a60a071 1265
1da177e4
LT
1266 clock = (clock * 33);
1267 VPRINTK("10 * Internal clk * 33 = 0x%x (%d)\n", clock, clock);
1268
1269 /* PLL F Param (bit 22:16) */
1270 fparam = (1400000 / clock) - 2;
1271 VPRINTK("PLL F Param: 0x%x (%d)\n", fparam, fparam);
8a60a071 1272
1da177e4
LT
1273 /* OD param = 0x2 (bit 31:30), R param = 0x5 (bit 29:25) */
1274 pci_status = (0x8a001824 | (fparam << 16));
1275 } else
1276 pci_status = PCI_PLL_INIT;
1277
1278 /* Initialize PLL. */
1279 VPRINTK("pci_status: 0x%x\n", pci_status);
1280 writel(pci_status, mmio + PDC_CTL_STATUS);
1281 readl(mmio + PDC_CTL_STATUS);
1282
8a60a071 1283 /*
1da177e4
LT
1284 Read SPD of DIMM by I2C interface,
1285 and program the DIMM Module Controller.
1286 */
1287 if (!(speed = pdc20621_detect_dimm(pe))) {
8a60a071 1288 printk(KERN_ERR "Detect Local DIMM Fail\n");
1da177e4
LT
1289 return 1; /* DIMM error */
1290 }
1291 VPRINTK("Local DIMM Speed = %d\n", speed);
1292
8a60a071 1293 /* Programming DIMM0 Module Control Register (index_CID0:80h) */
1da177e4
LT
1294 size = pdc20621_prog_dimm0(pe);
1295 VPRINTK("Local DIMM Size = %dMB\n",size);
1296
8a60a071 1297 /* Programming DIMM Module Global Control Register (index_CID0:88h) */
1da177e4
LT
1298 if (pdc20621_prog_dimm_global(pe)) {
1299 printk(KERN_ERR "Programming DIMM Module Global Control Register Fail\n");
1300 return 1;
1301 }
1302
1303#ifdef ATA_VERBOSE_DEBUG
1304 {
1305 u8 test_parttern1[40] = {0x55,0xAA,'P','r','o','m','i','s','e',' ',
1306 'N','o','t',' ','Y','e','t',' ','D','e','f','i','n','e','d',' ',
1307 '1','.','1','0',
1308 '9','8','0','3','1','6','1','2',0,0};
1309 u8 test_parttern2[40] = {0};
1310
1311 pdc20621_put_to_dimm(pe, (void *) test_parttern2, 0x10040, 40);
1312 pdc20621_put_to_dimm(pe, (void *) test_parttern2, 0x40, 40);
1313
1314 pdc20621_put_to_dimm(pe, (void *) test_parttern1, 0x10040, 40);
1315 pdc20621_get_from_dimm(pe, (void *) test_parttern2, 0x40, 40);
8a60a071 1316 printk(KERN_ERR "%x, %x, %s\n", test_parttern2[0],
1da177e4 1317 test_parttern2[1], &(test_parttern2[2]));
8a60a071 1318 pdc20621_get_from_dimm(pe, (void *) test_parttern2, 0x10040,
1da177e4 1319 40);
8a60a071 1320 printk(KERN_ERR "%x, %x, %s\n", test_parttern2[0],
1da177e4
LT
1321 test_parttern2[1], &(test_parttern2[2]));
1322
1323 pdc20621_put_to_dimm(pe, (void *) test_parttern1, 0x40, 40);
1324 pdc20621_get_from_dimm(pe, (void *) test_parttern2, 0x40, 40);
8a60a071 1325 printk(KERN_ERR "%x, %x, %s\n", test_parttern2[0],
1da177e4
LT
1326 test_parttern2[1], &(test_parttern2[2]));
1327 }
1328#endif
1329
1330 /* ECC initiliazation. */
1331
8a60a071 1332 pdc20621_i2c_read(pe, PDC_DIMM0_SPD_DEV_ADDRESS,
1da177e4
LT
1333 PDC_DIMM_SPD_TYPE, &spd0);
1334 if (spd0 == 0x02) {
1335 VPRINTK("Start ECC initialization\n");
1336 addr = 0;
1337 length = size * 1024 * 1024;
1338 while (addr < length) {
8a60a071 1339 pdc20621_put_to_dimm(pe, (void *) &tmp, addr,
1da177e4
LT
1340 sizeof(u32));
1341 addr += sizeof(u32);
1342 }
1343 VPRINTK("Finish ECC initialization\n");
1344 }
1345 return 0;
1346}
1347
1348
1349static void pdc_20621_init(struct ata_probe_ent *pe)
1350{
1351 u32 tmp;
ea6ba10b 1352 void __iomem *mmio = pe->mmio_base;
1da177e4
LT
1353
1354 /* hard-code chip #0 */
1355 mmio += PDC_CHIP0_OFS;
1356
1357 /*
1358 * Select page 0x40 for our 32k DIMM window
1359 */
1360 tmp = readl(mmio + PDC_20621_DIMM_WINDOW) & 0xffff0000;
1361 tmp |= PDC_PAGE_WINDOW; /* page 40h; arbitrarily selected */
1362 writel(tmp, mmio + PDC_20621_DIMM_WINDOW);
1363
1364 /*
1365 * Reset Host DMA
1366 */
1367 tmp = readl(mmio + PDC_HDMA_CTLSTAT);
1368 tmp |= PDC_RESET;
1369 writel(tmp, mmio + PDC_HDMA_CTLSTAT);
1370 readl(mmio + PDC_HDMA_CTLSTAT); /* flush */
1371
1372 udelay(10);
1373
1374 tmp = readl(mmio + PDC_HDMA_CTLSTAT);
1375 tmp &= ~PDC_RESET;
1376 writel(tmp, mmio + PDC_HDMA_CTLSTAT);
1377 readl(mmio + PDC_HDMA_CTLSTAT); /* flush */
1378}
1379
1380static int pdc_sata_init_one (struct pci_dev *pdev, const struct pci_device_id *ent)
1381{
1382 static int printed_version;
1383 struct ata_probe_ent *probe_ent = NULL;
1384 unsigned long base;
ea6ba10b
JG
1385 void __iomem *mmio_base;
1386 void __iomem *dimm_mmio = NULL;
1da177e4
LT
1387 struct pdc_host_priv *hpriv = NULL;
1388 unsigned int board_idx = (unsigned int) ent->driver_data;
1389 int pci_dev_busy = 0;
1390 int rc;
1391
1392 if (!printed_version++)
a9524a76 1393 dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n");
1da177e4
LT
1394
1395 /*
1396 * If this driver happens to only be useful on Apple's K2, then
1397 * we should check that here as it has a normal Serverworks ID
1398 */
1399 rc = pci_enable_device(pdev);
1400 if (rc)
1401 return rc;
1402
1403 rc = pci_request_regions(pdev, DRV_NAME);
1404 if (rc) {
1405 pci_dev_busy = 1;
1406 goto err_out;
1407 }
1408
1409 rc = pci_set_dma_mask(pdev, ATA_DMA_MASK);
1410 if (rc)
1411 goto err_out_regions;
1412 rc = pci_set_consistent_dma_mask(pdev, ATA_DMA_MASK);
1413 if (rc)
1414 goto err_out_regions;
1415
1416 probe_ent = kmalloc(sizeof(*probe_ent), GFP_KERNEL);
1417 if (probe_ent == NULL) {
1418 rc = -ENOMEM;
1419 goto err_out_regions;
1420 }
1421
1422 memset(probe_ent, 0, sizeof(*probe_ent));
1423 probe_ent->dev = pci_dev_to_dev(pdev);
1424 INIT_LIST_HEAD(&probe_ent->node);
1425
374b1873 1426 mmio_base = pci_iomap(pdev, 3, 0);
1da177e4
LT
1427 if (mmio_base == NULL) {
1428 rc = -ENOMEM;
1429 goto err_out_free_ent;
1430 }
1431 base = (unsigned long) mmio_base;
1432
1433 hpriv = kmalloc(sizeof(*hpriv), GFP_KERNEL);
1434 if (!hpriv) {
1435 rc = -ENOMEM;
1436 goto err_out_iounmap;
1437 }
1438 memset(hpriv, 0, sizeof(*hpriv));
1439
374b1873 1440 dimm_mmio = pci_iomap(pdev, 4, 0);
1da177e4
LT
1441 if (!dimm_mmio) {
1442 kfree(hpriv);
1443 rc = -ENOMEM;
1444 goto err_out_iounmap;
1445 }
1446
1447 hpriv->dimm_mmio = dimm_mmio;
1448
1449 probe_ent->sht = pdc_port_info[board_idx].sht;
1450 probe_ent->host_flags = pdc_port_info[board_idx].host_flags;
1451 probe_ent->pio_mask = pdc_port_info[board_idx].pio_mask;
1452 probe_ent->mwdma_mask = pdc_port_info[board_idx].mwdma_mask;
1453 probe_ent->udma_mask = pdc_port_info[board_idx].udma_mask;
1454 probe_ent->port_ops = pdc_port_info[board_idx].port_ops;
1455
1456 probe_ent->irq = pdev->irq;
1457 probe_ent->irq_flags = SA_SHIRQ;
1458 probe_ent->mmio_base = mmio_base;
1459
1460 probe_ent->private_data = hpriv;
1461 base += PDC_CHIP0_OFS;
1462
1463 probe_ent->n_ports = 4;
1464 pdc_sata_setup_port(&probe_ent->port[0], base + 0x200);
1465 pdc_sata_setup_port(&probe_ent->port[1], base + 0x280);
1466 pdc_sata_setup_port(&probe_ent->port[2], base + 0x300);
1467 pdc_sata_setup_port(&probe_ent->port[3], base + 0x380);
1468
1469 pci_set_master(pdev);
1470
1471 /* initialize adapter */
1472 /* initialize local dimm */
1473 if (pdc20621_dimm_init(probe_ent)) {
1474 rc = -ENOMEM;
1475 goto err_out_iounmap_dimm;
1476 }
1477 pdc_20621_init(probe_ent);
1478
1479 /* FIXME: check ata_device_add return value */
1480 ata_device_add(probe_ent);
1481 kfree(probe_ent);
1482
1483 return 0;
1484
1485err_out_iounmap_dimm: /* only get to this label if 20621 */
1486 kfree(hpriv);
374b1873 1487 pci_iounmap(pdev, dimm_mmio);
1da177e4 1488err_out_iounmap:
374b1873 1489 pci_iounmap(pdev, mmio_base);
1da177e4
LT
1490err_out_free_ent:
1491 kfree(probe_ent);
1492err_out_regions:
1493 pci_release_regions(pdev);
1494err_out:
1495 if (!pci_dev_busy)
1496 pci_disable_device(pdev);
1497 return rc;
1498}
1499
1500
1501static int __init pdc_sata_init(void)
1502{
1503 return pci_module_init(&pdc_sata_pci_driver);
1504}
1505
1506
1507static void __exit pdc_sata_exit(void)
1508{
1509 pci_unregister_driver(&pdc_sata_pci_driver);
1510}
1511
1512
1513MODULE_AUTHOR("Jeff Garzik");
1514MODULE_DESCRIPTION("Promise SATA low-level driver");
1515MODULE_LICENSE("GPL");
1516MODULE_DEVICE_TABLE(pci, pdc_sata_pci_tbl);
1517MODULE_VERSION(DRV_VERSION);
1518
1519module_init(pdc_sata_init);
1520module_exit(pdc_sata_exit);